FROM httpd ENV PUID=${PUID:-1000} ENV PGID=${PGID:-1000} COPY init.sh /init.sh RUN apt-get update && \ apt-get -y upgrade && \ apt-get -y install curl p7zip-full megatools git && \ chmod +x /init.sh WORKDIR /usr/local/apache2/htdocs/ RUN mkdir download RUN chown -R $PUID:$PGID /usr/local/apache2/htdocs ENV IMG false CMD ["/bin/bash","/init.sh"]