Adds dockerfile

This commit is contained in:
zachary 2015-06-17 19:58:34 -04:00
parent b2c1365eca
commit f8cf0fa679
2 changed files with 25 additions and 0 deletions

16
.dockerignore Normal file
View File

@ -0,0 +1,16 @@
build
build.xml
ChangeLog
composer.json
CONTRIBUTING.md
COPYING
COPYRIGHT
dev
doc
Dockerfile
INSTALL
README-FR.md
README.md
robots.txt
scripts
test

9
Dockerfile Normal file
View File

@ -0,0 +1,9 @@
FROM php:5.6-apache
RUN apt-get update && apt-get install -y php5-gd php5-mysql
COPY htdocs/ /var/www/html/
RUN chown -hR www-data:www-data /var/www/html
EXPOSE 80