diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..30b1750 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,11 @@ +FROM webdevops/php-apache:7.4 + +# want rsvg support too +RUN apt-get update +RUN apt-get install -y librsvg + +#restart apache +RUN service apache2 restart + +# export ports +EXPOSE 80 443