-
Notifications
You must be signed in to change notification settings - Fork 2
/
Dockerfile
81 lines (63 loc) · 2.19 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
# Multi-stage build
###############################################################################
## Python base image
###############################################################################
FROM python:3.8-slim AS python-base
### Arg
#### See: https://stackoverflow.com/a/56569081
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 gettext 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 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
###############################################################################
## App image
###############################################################################
FROM python-base AS app
### Env
ENV PATH=/root/.local/bin:$PATH
### Dependencies
#### Python (copy from python-builder)
COPY --from=python-builder /root/.local /root/.local
### Volumes
WORKDIR ${APP_DOCKER}
RUN mkdir media static logs
VOLUME ["${APP_DOCKER}/media/", "${APP_DOCKER}/logs/"]
# Expose server port
EXPOSE 8000
### Setup app
COPY ${APP_HOST} ${APP_DOCKER}
COPY ${APP_HOST}/contrib/docker/*.sh /
RUN chmod +x /entrypoint.sh \
&& chmod +x /cmd.sh \
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
### Run app
ENTRYPOINT ["/entrypoint.sh"]
CMD ["/cmd.sh", "gmmp.wsgi:application"]