FROM registry.dege.au/leenooks/php:8.1-fpm-alpine-pgsql-server VOLUME [ "/var/cache/composer" ] COPY . /var/www/html/ 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}/*