Added gitlab-ci to build docker image

This commit is contained in:
Deon George
2021-06-13 23:23:19 +10:00
parent 55fcfa2e4a
commit 0b421c4d8e
3 changed files with 55 additions and 0 deletions

10
Dockerfile Normal file
View File

@@ -0,0 +1,10 @@
FROM registry.leenooks.net/leenooks/php:8.0-fpm-mp
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 \
&& rm -rf /var/www/.composer/*