CI to build docker container

This commit is contained in:
Deon George
2021-06-30 10:36:27 +10:00
parent bac4fd6227
commit 6a4b0f6d79
4 changed files with 97 additions and 67 deletions

12
Dockerfile Normal file
View File

@@ -0,0 +1,12 @@
FROM registry.leenooks.net/leenooks/php:8.0-fpm-ext
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 /sbin/init \
&& chmod +x /var/www/html/artisan \
&& touch .migrate \
&& rm -rf /var/www/.composer/*