hallelujah: ✨ it's back, that's all that matters
This commit is contained in:
parent
4575ca9bfc
commit
54a16cc77e
23 changed files with 1382 additions and 8 deletions
17
docker_dev/Dockerfile
Normal file
17
docker_dev/Dockerfile
Normal 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)
|
Loading…
Add table
Add a link
Reference in a new issue