CI to build docker container
This commit is contained in:
12
Dockerfile
Normal file
12
Dockerfile
Normal 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/*
|
Reference in New Issue
Block a user