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