-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
120 lines (93 loc) · 3.26 KB
/
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
# Multi-stage build
###############################################################################
## Python base image
###############################################################################
FROM python:3.10-slim-bullseye AS python-base
### Arg
ARG DEBIAN_FRONTEND=noninteractive
### Env
ENV APP_HOST=.
ENV APP_DOCKER=/app
ENV PYTHONDONTWRITEBYTECODE 1
ENV PYTHONUNBUFFERED 1
### Dependencies
#### System
#### We need libpq-dev in both build and final runtime image
RUN apt-get update \
&& apt-get -y upgrade \
&& apt-get install libpq-dev --no-install-recommends -y \
&& apt-get clean
###############################################################################
## Python builder base image
###############################################################################
FROM python-base AS python-builder-base
### Dependencies
#### System
RUN apt-get install gcc python-dev --no-install-recommends -y \
&& apt-get clean \
&& pip install --upgrade pip
###############################################################################
## Python builder ci image
###############################################################################
FROM python-builder-base AS python-builder-ci
### Env
ENV PATH=/root/.local/bin:$PATH
### Dependencies
#### Python dev & testing
COPY ${APP_HOST}/requirements-all.txt ${APP_HOST}/requirements-dev.txt /tmp/
RUN pip install --user -r /tmp/requirements-dev.txt
###############################################################################
## Python app ci image
###############################################################################
FROM python-base AS python-app-ci
### Env
ENV PATH=/root/.local/bin:$PATH
### Dependencies
#### Python (copy from python-builder)
COPY --from=python-builder-ci /root/.local /root/.local
#### git (for `pre-commit`)
#### postgresql-client (for `psql`)
RUN apt-get install git postgresql-client --no-install-recommends -y \
&& apt-get clean
# Expose server port
EXPOSE 8000
### Volumes
WORKDIR ${APP_DOCKER}
RUN mkdir -p media staticfiles logs
### Setup app
COPY ${APP_HOST} ${APP_DOCKER}
COPY ${APP_HOST}/contrib/docker/cmd.sh ${APP_HOST}/contrib/docker-compose/wait-for-postgres.sh /
RUN chmod +x /cmd.sh \
&& chmod +x /wait-for-postgres.sh
### Run app-ci
CMD ["/cmd.sh"]
###############################################################################
## Python builder image
###############################################################################
FROM python-builder-base AS python-builder
### Env
ENV PATH=/root/.local/bin:$PATH
### Dependencies
#### Python
COPY ${APP_HOST}/requirements-all.txt ${APP_HOST}/requirements.txt /tmp/
RUN pip install --user -r /tmp/requirements.txt
###############################################################################
## Python app image
###############################################################################
FROM python-base AS python-app
### Env
ENV PATH=/root/.local/bin:$PATH
### Dependencies
#### Python (copy from python-builder)
COPY --from=python-builder /root/.local /root/.local
# Expose server port
EXPOSE 8000
### Volumes
WORKDIR ${APP_DOCKER}
RUN mkdir -p media staticfiles logs
### Setup app
COPY ${APP_HOST} ${APP_DOCKER}
COPY ${APP_HOST}/contrib/docker/*.sh /
RUN chmod +x /cmd.sh
### Run app
CMD ["/cmd.sh"]