Fixes for composers new configuration

This commit is contained in:
Deon George
2021-07-09 13:19:21 +10:00
parent 19860d657f
commit bc26f7b881
2 changed files with 5 additions and 4 deletions

View File

@@ -2,11 +2,12 @@ FROM registry.leenooks.net/leenooks/php:8.0-fpm-image
COPY . /var/www/html/
RUN mkdir /var/www/.composer \
RUN export COMPOSER_HOME=/var/www/.composer \
&& mkdir -p /var/www/.composer \
&& ([ -r auth.json ] && mv auth.json /var/www/.composer/) || true \
&& touch .composer.refresh \
&& mv .env.example .env \
&& FORCE_PERMS=1 NGINX_START=FALSE /sbin/init \
&& chmod +x /var/www/html/artisan \
&& touch .migrate \
&& rm -rf /var/www/.composer/*
&& rm -rf /var/www/.composer