add Docker and Drone boilerplate
This commit is contained in:
parent
5512a19e1f
commit
c9b3757027
6 changed files with 117 additions and 0 deletions
9
Dockerfile
Normal file
9
Dockerfile
Normal 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/
|
||||
Loading…
Add table
Add a link
Reference in a new issue