forked from mitodl/ocw-studio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile
38 lines (29 loc) · 1007 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
32
33
34
35
36
37
38
FROM python:3.8.7
LABEL maintainer "ODL DevOps <[email protected]>"
# Add package files, install updated node and pip
WORKDIR /tmp
# Install packages and add repo needed for postgres 9.6
COPY apt.txt /tmp/apt.txt
RUN apt-get update
RUN apt-get install -y $(grep -vE "^\s*#" apt.txt | tr "\n" " ")
# pip
RUN curl --silent --location https://bootstrap.pypa.io/get-pip.py | python3 -
# Add, and run as, non-root user.
RUN mkdir /src
RUN adduser --disabled-password --gecos "" mitodl
RUN mkdir /var/media && chown -R mitodl:mitodl /var/media
# Install project packages
COPY requirements.txt /tmp/requirements.txt
COPY test_requirements.txt /tmp/test_requirements.txt
RUN pip install -r requirements.txt -r test_requirements.txt
# Add project
COPY . /src
WORKDIR /src
RUN chown -R mitodl:mitodl /src
RUN apt-get clean && apt-get purge
USER mitodl
# Set pip cache folder, as it is breaking pip when it is on a shared volume
ENV XDG_CACHE_HOME /tmp/.cache
EXPOSE 8043
ENV PORT 8043
CMD uwsgi uwsgi.ini