Added PUID and PGID env vars to dockerfile

Added chown to dockerfile
This commit is contained in:
Jafner 2021-09-09 13:20:30 -07:00
parent 72d0c8be34
commit d3abfb6b26

View File

@ -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"]