diff --git a/Dockerfile b/Dockerfile index 07978ea..5c9f41c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,6 @@ FROM httpd +ENV PUID=${PUID:-1000} +ENV PGID=${PGID:-1000} COPY init.sh /init.sh COPY healthcheck.sh /healthcheck.sh RUN apt-get update && \ @@ -8,6 +10,7 @@ chmod +x /init.sh && \ chmod +x /healthcheck.sh WORKDIR /usr/local/apache2/htdocs/ RUN mkdir download +RUN chown -R $PUID:$PGID /usr/local/apache2/htdocs ENV IMG false HEALTHCHECK --start-period=1m CMD /healthcheck.sh CMD ["/bin/bash","/init.sh"] \ No newline at end of file