add Docker and Drone boilerplate

This commit is contained in:
Lexi / Zoe 2020-06-28 17:20:42 +02:00
parent 5512a19e1f
commit c9b3757027
Signed by: binaryDiv
GPG key ID: F8D4956E224DA232
6 changed files with 117 additions and 0 deletions

9
Dockerfile Normal file
View file

@ -0,0 +1,9 @@
FROM php:7.4-apache
WORKDIR /var/www
RUN sed -ri -e 's!/var/www/html!/var/www/public!g' /etc/apache2/sites-available/*.conf
COPY vendor/ /var/www/vendor/
COPY public/ /var/www/public/
COPY src/ /var/www/src/