Add a basic bitch dockerfile

This commit is contained in:
Salt 2021-02-15 13:25:00 -06:00
parent 7909e8f91d
commit 36f5753088
2 changed files with 9 additions and 0 deletions

6
.dockerignore Normal file
View File

@ -0,0 +1,6 @@
.git
.gitignore
.templates
deploy.sh
README.md
test.sh

3
Dockerfile Normal file
View File

@ -0,0 +1,3 @@
FROM php:7-apache
COPY ./ /var/www/html/
EXPOSE 80