Update docker container configuration and image

This commit is contained in:
Deon George
2023-02-10 23:19:23 +11:00
parent 04be81852a
commit 829120fbad
4 changed files with 54 additions and 60 deletions

View File

@@ -1,12 +1,12 @@
FROM registry.leenooks.net/leenooks/php:8.1-fpm-server
FROM registry.dege.au/leenooks/php:8.1-fpm-alpine-pgsql-server
COPY . /var/www/html/
RUN mkdir /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 /var/www/html/init-php.sh \
&& touch .migrate \
&& rm -rf /var/www/.composer/*
RUN mkdir -p ${COMPOSER_HOME} && \
([ -r auth.json ] && mv auth.json ${COMPOSER_HOME}) || true && \
touch .composer.refresh && \
mv .env.example .env && \
FORCE_PERMS=1 NGINX_START=FALSE /sbin/init && \
chmod +x /var/www/html/artisan /var/www/html/init-php.sh && \
touch .migrate && \
rm -rf ${COMPOSER_HOME}/*