forked from RockefellerArchiveCenter/request_broker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
39 lines (33 loc) · 1.22 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
FROM python:3.10
ENV PYTHONUNBUFFERED 1
RUN apt-get update
RUN apt-get install --yes apache2 apache2-dev
#RUN apt-get install --yes libapache2-mod-wsgi-py3
RUN apt-get install --yes postgresql
#RUN ln /usr/bin/python3 /usr/bin/python
RUN apt-get -y install python3-pip
RUN pip install --upgrade pip
RUN wget https://github.com/GrahamDumpleton/mod_wsgi/archive/refs/tags/4.9.0.tar.gz \
&& tar xvfz 4.9.0.tar.gz \
&& cd mod_wsgi-4.9.0 \
&& ./configure --with-apxs=/usr/bin/apxs --with-python=/usr/local/bin/python \
&& make \
&& make install \
&& make clean
ADD ./apache/000-request_broker.conf /etc/apache2/sites-available/000-request_broker.conf
ADD ./apache/wsgi.load /etc/apache2/mods-available/wsgi.load
RUN a2ensite 000-request_broker.conf
RUN a2enmod headers
RUN a2enmod rewrite
RUN a2enmod wsgi
RUN mkdir -p /var/www/html/
COPY . /var/www/html/request-broker
WORKDIR /var/www/html/request-broker
RUN pip install -r requirements.txt
RUN ./manage.py collectstatic
RUN chmod 775 /var/www/html/request-broker
RUN chmod 775 /var/www/html/request-broker/static
RUN chown :www-data /var/www/html/request-broker
RUN chown :www-data /var/www/html/request-broker/static
EXPOSE 8000
CMD ["apache2ctl", "-D", "FOREGROUND"]