diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 0000000..15154f0 --- /dev/null +++ b/.dockerignore @@ -0,0 +1,8 @@ +.git +cache/* +DEBUG +Dockerfile +whitelist.txt +phpcs.xml +CHANGELOG.md +CONTRIBUTING.md \ No newline at end of file diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..35caac8 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,5 @@ +FROM ulsmith/alpine-apache-php7 + +COPY ./ /app/public/ + +RUN chown -R apache:root /app/public \ No newline at end of file