hallelujah: it's back, that's all that matters

This commit is contained in:
David Bailey 2023-10-14 15:57:28 +02:00
parent 4575ca9bfc
commit 54a16cc77e
23 changed files with 1382 additions and 8 deletions

17
docker_dev/Dockerfile Normal file
View file

@ -0,0 +1,17 @@
FROM composer
WORKDIR /app
COPY composer.* .
RUN composer install
FROM php:apache
WORKDIR /var/www/html
COPY --from=0 /app/ ./
RUN chmod -R a+r ./vendor
RUN a2enmod rewrite
RUN a2enmod headers
COPY . .
RUN chmod -R a+r $(ls -I vendor)