72bcc173eb
* Switch Docker Image to official php base image Switch from the unofficial Alpine+php image to the official php-apache image. This has 2 advantages: 1. Official image is guaranteed to have regular updates, etc 2. The persistent Docker Alpine DNS Issue goes away; https://github.com/gliderlabs/docker-alpine/issues/255 * [Docker] Ignore more files from Docker Image
11 lines
No EOL
483 B
Docker
11 lines
No EOL
483 B
Docker
FROM php:7-apache
|
|
|
|
ENV APACHE_DOCUMENT_ROOT=/app
|
|
|
|
RUN mv "$PHP_INI_DIR/php.ini-production" "$PHP_INI_DIR/php.ini" \
|
|
&& apt-get --yes update && apt-get --yes install libxml2-dev \
|
|
&& docker-php-ext-install -j$(nproc) simplexml \
|
|
&& sed -ri -e 's!/var/www/html!${APACHE_DOCUMENT_ROOT}!g' /etc/apache2/sites-available/*.conf \
|
|
&& sed -ri -e 's!/var/www/!${APACHE_DOCUMENT_ROOT}!g' /etc/apache2/apache2.conf /etc/apache2/conf-available/*.conf
|
|
|
|
COPY --chown=www-data:www-data ./ /app/ |