This commit is contained in:
2019-04-12 21:55:09 +02:00
commit 9c1338c0c2
14 changed files with 133 additions and 0 deletions

17
Dockerfile Normal file
View File

@@ -0,0 +1,17 @@
FROM fedora
RUN dnf -y update && \
dnf -y install httpd && \
dnf -y install python3-mod_wsgi && \
dnf -y install git && \
dnf clean all
COPY container-files/ /
RUN /usr/local/bin/install-django-test.sh
EXPOSE 80
ENTRYPOINT ["/usr/local/sbin/start-httpd.sh"]
CMD ["--"]