osb/Dockerfile

13 lines
412 B
Docker
Raw Normal View History

FROM registry.dege.au/leenooks/php:8.1-fpm-alpine-mysql
2021-06-30 00:36:27 +00:00
COPY . /var/www/html/
RUN mkdir -p ${COMPOSER_HOME} \
&& ([ -r auth.json ] && mv auth.json ${COMPOSER_HOME}) || true \
2021-06-30 00:36:27 +00:00
&& touch .composer.refresh \
&& mv .env.example .env \
&& FORCE_PERMS=1 NGINX_START=FALSE /sbin/init \
2021-06-30 00:36:27 +00:00
&& chmod +x /var/www/html/artisan \
&& /var/www/html/artisan storage:link \
&& rm -rf ${COMPOSER_HOME}/* .git* composer.lock