-
Notifications
You must be signed in to change notification settings - Fork 65
/
Copy pathproduction.dockerfile
75 lines (55 loc) · 2.12 KB
/
production.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
# Some requirements (psycopg2 in particular) require system-level dependencies
# to build their wheel. We don't want to ship such dev dependencies in the final
# image, so we build the virtualenv separately.
FROM python:3.13-slim as venv-builder
WORKDIR /opt/project/backend
RUN apt-get update \
&& apt-get upgrade -y \
&& apt-get install -y --no-install-recommends \
build-essential \
libpq-dev \
&& rm -rf /var/lib/apt/lists/*
# Create and activate virtualenv the Docker-way
RUN python -m venv /opt/project/backend/venv
ENV PATH="/opt/project/backend/venv/bin:$PATH"
# Copy and install requirements
COPY requirements/production.txt .
RUN python -m pip install --upgrade pip \
&& python -m pip install --no-cache-dir -r production.txt
# Intermediate step to select only project files and directories that should be shipped
FROM alpine:latest AS tarball-creator
WORKDIR /opt/project
COPY . ./
RUN tar -czf \
build.tar.gz \
accounts api newsletter payments products src gunicorn.conf.py
# Prepare underlying system
FROM python:3.13-slim AS app-system
RUN useradd --create-home appuser
RUN apt-get update \
&& apt-get upgrade -y \
&& apt-get install -y --no-install-recommends locales libpq5 \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
# Set up locale
RUN sed -i -e 's/# en_GB.UTF-8 UTF-8/en_GB.UTF-8 UTF-8/' /etc/locale.gen \
&& dpkg-reconfigure --frontend=noninteractive locales \
&& update-locale LANG=en_GB.UTF-8
FROM app-system AS app-final
WORKDIR /opt/project/backend
COPY --from=tarball-creator /opt/project/build.tar.gz ./
RUN tar -xzf build.tar.gz \
&& rm build.tar.gz
# Expose gunicorn's port
EXPOSE 8000
# Copy virtualenv created in the venv-builder and activate it
COPY --from=venv-builder /opt/project/backend/venv /opt/project/backend/venv
ENV PATH="/opt/project/backend/venv/bin:$PATH"
# Set the environment
ENV PYTHONUNBUFFERED 1
ENV PYTHONDONTWRITEBYTECODE 1
ENV DJANGO_SETTINGS_MODULE src.settings.defaults
# Set the user
USER appuser
# Run the app
CMD ["python", "-m", "gunicorn", "--conf", "gunicorn.conf.py", "src.wsgi:application", "--bind", "0.0.0.0:8000"]