-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
95 lines (67 loc) · 2.41 KB
/
Dockerfile
File metadata and controls
95 lines (67 loc) · 2.41 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
# Stage 1 - Backend build environment
# includes compilers and build tooling to create the environment
FROM python:3.12-slim-bullseye AS backend-build
RUN apt-get update && apt-get install -y --no-install-recommends \
pkg-config \
build-essential \
git \
libpq-dev \
&& rm -rf /var/lib/apt/lists/*
WORKDIR /app
RUN mkdir /app/src
ARG ENVIRONMENT=production
RUN pip install uv -U
COPY ./backend/requirements /app/requirements
RUN uv pip install --system -r requirements/${ENVIRONMENT}.txt
# Stage 2 - Build the Front end
FROM node:20-bullseye-slim AS frontend-build
RUN mkdir /frontend
WORKDIR /frontend
RUN apt-get update && apt-get install -y --no-install-recommends \
git \
ca-certificates \
&& rm -rf /var/lib/apt/lists/*
COPY ./frontend/package-lock.json ./frontend/package.json ./
RUN npm ci
COPY ./frontend .
RUN npm run build
# Stage 3 - Build docker image suitable for production
FROM python:3.12-slim-bullseye
# Stage 3.1 - Set up the needed production dependencies
RUN apt-get update && apt-get install -y --no-install-recommends \
procps \
vim \
mime-support \
postgresql-client \
gettext \
&& rm -rf /var/lib/apt/lists/*
WORKDIR /app
COPY ./backend/bin/docker_start.sh /start.sh
RUN mkdir -p /app/log /app/media /app/src/openbeheer/static/
# copy backend build deps
COPY --from=backend-build /usr/local/lib/python3.12 /usr/local/lib/python3.12
COPY --from=backend-build /usr/local/bin/uwsgi /usr/local/bin/uwsgi
COPY ./backend/src /app/src
COPY --from=frontend-build /frontend/dist /app/src/openbeheer/static/frontend
COPY --from=frontend-build /frontend/dist/static/assets /app/src/openbeheer/static/assets
RUN useradd -M -u 1000 maykin && chown -R maykin:maykin /app
VOLUME ["/app/log", "/app/media"]
# drop privileges
USER maykin
ARG COMMIT_HASH
ARG RELEASE=latest
ARG DJANGO_SETTINGS=docker
ENV RELEASE=${RELEASE} \
GIT_SHA=${COMMIT_HASH} \
PYTHONUNBUFFERED=1 \
DJANGO_SETTINGS_MODULE=openbeheer.conf.${DJANGO_SETTINGS}
# Needed otherwise the call to collectstatic fails
ARG SECRET_KEY=dummy
LABEL org.label-schema.vcs-ref=$COMMIT_HASH \
org.label-schema.vcs-url="https://github.com/maykinmedia/open-beheer" \
org.label-schema.version=$RELEASE \
org.label-schema.name="openbeheer"
RUN python src/manage.py collectstatic --noinput \
&& python src/manage.py compilemessages
EXPOSE 8000
CMD ["/start.sh"]