forked from RockefellerArchiveCenter/scorpio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile
31 lines (26 loc) · 899 Bytes
/
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
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 -y install python3-pip
RUN pip install --upgrade pip
RUN pip install django
ADD ./apache/000-scorpio.conf /etc/apache2/sites-available/000-scorpio.conf
RUN a2dissite 000-default
RUN a2ensite 000-scorpio.conf
RUN a2enmod headers
RUN a2enmod rewrite
RUN mkdir -p /var/www/html/
COPY . /var/www/html/scorpio
WORKDIR /var/www/html/scorpio
RUN pip install -r requirements.txt
RUN ./manage.py collectstatic
RUN chmod 775 /var/www/html/scorpio
RUN chgrp www-data /var/www/html/scorpio
RUN chmod 775 /var/www/html/scorpio/static
RUN chown www-data:www-data /var/www/html/scorpio/static
RUN chmod 775 /var/www/html/scorpio/scorpio
RUN chgrp www-data /var/www/html/scorpio/scorpio
EXPOSE 8008 9201
CMD ["apache2ctl", "-D", "FOREGROUND"]