forked from RockefellerArchiveCenter/scorpio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile.prod
36 lines (31 loc) · 1.13 KB
/
Dockerfile.prod
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
FROM python:3.10
ENV PYTHONUNBUFFERED 1
ARG SCORPIO_DNS
ARG APPLICATION_PORT
RUN apt-get update
RUN apt-get install --yes apache2 apache2-dev
RUN apt-get install --yes postgresql
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-scorpio.conf /etc/apache2/sites-available/000-scorpio.conf
RUN sed "s/ENV_SCORPIO_DNS/${SCORPIO_DNS}/" -i /etc/apache2/sites-available/000-scorpio.conf
RUN sed "s/ENV_SCORPIO_PORT/${APPLICATION_PORT}/" -i /etc/apache2/sites-available/000-scorpio.conf
ADD ./apache/wsgi.load /etc/apache2/mods-available/wsgi.load
RUN a2dissite 000-default
RUN a2ensite 000-scorpio.conf
RUN a2enmod headers
RUN a2enmod rewrite
RUN a2enmod wsgi
COPY . /var/www/scorpio
WORKDIR /var/www/scorpio
RUN pip install -r requirements.txt
RUN ./manage.py collectstatic
EXPOSE ${APPLICATION_PORT}
CMD ["apache2ctl", "-D", "FOREGROUND"]