Updated Dockerfile to be consistent with other implementations

This commit is contained in:
Deon George 2024-07-11 22:03:19 +10:00
parent c1e6d436e5
commit e10ca8f18a

View File

@ -8,13 +8,12 @@ RUN apk add zerotier-one -X http://dl-cdn.alpinelinux.org/alpine/v3.17/community
COPY init-container /sbin/ COPY init-container /sbin/
COPY . /var/www/html/ COPY . /var/www/html/
RUN mkdir -p ${COMPOSER_HOME} && \ RUN mkdir -p ${COMPOSER_HOME} \
([ -r auth.json ] && mv auth.json ${COMPOSER_HOME}) || true && \ && ([ -r auth.json ] && mv auth.json ${COMPOSER_HOME}) || true \
touch .composer.refresh && \ && touch .composer.refresh \
mv .env.example .env && \ && mv .env.example .env \
apk add --no-cache git && \ && apk add --no-cache git \
FORCE_PERMS=1 NGINX_START=FALSE /sbin/init && \ && FORCE_PERMS=1 NGINX_START=FALSE /sbin/init \
apk del --no-cache git && \ && apk del --no-cache git \
chmod +x /var/www/html/artisan /var/www/html/init-php.sh && \ && chmod +x /var/www/html/artisan /var/www/html/init-php.sh \
touch .migrate && \ && rm -rf ${COMPOSER_HOME}/* .git* composer.lock
rm -rf ${COMPOSER_HOME}/*