Jafner.net/5etools-docker/Dockerfile
Jafner a178b072ff Initial commit
A functional initial release
2021-07-05 00:01:04 -07:00

10 lines
210 B
Docker

FROM httpd
COPY init.sh /init.sh
RUN apt-get update && \
apt-get upgrade && \
apt-get -y install curl p7zip-full
WORKDIR /usr/local/apache2/htdocs/
RUN mkdir download
ENV IMG false
CMD ["/bin/bash","/init.sh"]