This commit is contained in:
2024-08-01 10:53:30 -04:00
parent ba9558d7c8
commit b90769b9c4
4 changed files with 583 additions and 0 deletions

5
Dockerfile Normal file
View File

@@ -0,0 +1,5 @@
FROM httpd
RUN apt-get update && apt-get install -y libapache2-mod-wsgi-py3
COPY conf/httpd.conf /usr/local/apache2/conf/httpd.conf
COPY conf/wsgi_app.py /usr/local/apache2/htdocs/wsgi_app.py
RUN cp /usr/lib/apache2/modules/mod_wsgi.so /usr/local/apache2/modules/mod_wsgi.so