-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDockerfile
More file actions
73 lines (53 loc) · 1.55 KB
/
Copy pathDockerfile
File metadata and controls
73 lines (53 loc) · 1.55 KB
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
###########
# BUILDER #
###########
# pull official base image
FROM python:3.13-slim-bookworm AS builder
# install uv
COPY --from=ghcr.io/astral-sh/uv:0.11.19 /uv /uvx /bin/
# set work directory
WORKDIR /usr/src/app
# set environment variables
ENV PYTHONDONTWRITEBYTECODE=1
ENV PYTHONUNBUFFERED=1
ENV UV_COMPILE_BYTECODE=1
ENV UV_LINK_MODE=copy
# install python dependencies into a virtual environment (.venv)
COPY pyproject.toml uv.lock ./
RUN uv sync --locked --no-dev --no-install-project
#########
# FINAL #
#########
# pull official base image
FROM python:3.13-slim-bookworm
# upgrade system packages
RUN apt-get update && apt-get upgrade -y && apt-get clean
# create directory for the app user
RUN mkdir -p /home/app
# create the app user
RUN addgroup --system app && adduser --system --group app
# create the appropriate directories
ENV HOME=/home/app
ENV APP_HOME=/home/app/web
RUN mkdir $APP_HOME
WORKDIR $APP_HOME
# set environment variables
ENV PYTHONDONTWRITEBYTECODE=1
ENV PYTHONUNBUFFERED=1
ENV ENVIRONMENT=prod
ENV TESTING=0
ENV PYTHONPATH=$APP_HOME
# activate the virtual environment by adding it to the PATH
ENV PATH="/usr/src/app/.venv/bin:$PATH"
# copy the pre-built virtual environment from the builder
COPY --from=builder /usr/src/app/.venv /usr/src/app/.venv
# copy project
COPY . $APP_HOME
# collect static files
RUN python manage.py collectstatic --noinput
# chown all the files to the app user
RUN chown -R app:app $HOME
# change to the app user
USER app
# perform the migrations, create a superuser, and serve the application
CMD ./start_app.sh