X-Git-Url: http://git.purplebirdman.com/public.git/blobdiff_plain/af76d89a927c5df28052445fb0f209f27b2f195c..HEAD:/Dockerfile diff --git a/Dockerfile b/Dockerfile index f67711c..8659635 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ -FROM httpd:2.4 +FROM httpd:2.4-alpine -RUN apt-get update -y && \ - apt-get -y install make gcc perl && \ - cpan -i File::Spec File::Path +# open htdocs so scripts can write dynamically into there +RUN chmod 777 /usr/local/apache2/htdocs -RUN mkdir -p /usr/local/apache2/htdocs/public +COPY /httpd.conf /usr/local/apache2/conf/httpd.conf +COPY /lua /usr/local/apache2/lua