Browse Source

docker: remove special handling of instance-config.php from build

mitigate-move-dataloss
Zankaria 4 weeks ago
committed by Zankaria
parent
commit
2509be645d
  1. 6
      docker/php/Dockerfile

6
docker/php/Dockerfile

@ -71,16 +71,14 @@ RUN rmdir /var/www/html \
&& install -d -m 700 -o www-data -g www-data /var/cache/gen-cache \
&& install -d -m 700 -o www-data -g www-data /var/cache/template-cache
COPY --from=composer /usr/bin/composer /usr/local/bin/composer
# Copy the bootstrap script.
COPY ./docker/php/bootstrap.sh /usr/local/bin/bootstrap.sh
COPY --from=composer /usr/bin/composer /usr/local/bin/composer
# Copy the actual project (use .dockerignore to exclude stuff).
COPY . /code
# Make the instance configuration owned by www-data.
# Make it writable by php.
# Install the compose depedencies.
RUN cd /code && composer install

Loading…
Cancel
Save