forked from VNG-Realisatie/catalogi-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
100 lines (76 loc) · 2.33 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
# Stage 1 - Compile needed python dependencies
FROM python:3.6-alpine AS build
RUN apk --no-cache add \
gcc \
musl-dev \
pcre-dev \
linux-headers \
postgresql-dev \
python3-dev \
# libraries installed using git
git \
# lxml dependencies
libxslt-dev \
# pillow dependencies
jpeg-dev \
openjpeg-dev \
zlib-dev
WORKDIR /app
COPY ./requirements /app/requirements
RUN pip install -r requirements/production.txt
# Don't copy source code here, as changes will bust the cache for everyting
# below
# Stage 2 - build frontend
FROM mhart/alpine-node:10 AS frontend-build
WORKDIR /app
COPY ./*.json /app/
RUN npm install
COPY ./Gulpfile.js /app/
COPY ./build /app/build/
COPY src/ztc/sass/ /app/src/ztc/sass/
RUN npm run build
# Stage 3 - Prepare jenkins tests image
FROM build AS jenkins
RUN apk --no-cache add \
postgresql-client
COPY --from=build /usr/local/lib/python3.6 /usr/local/lib/python3.6
COPY --from=build /app/requirements /app/requirements
RUN pip install -r requirements/jenkins.txt --exists-action=s
# Stage 3.2 - Set up testing config
COPY ./setup.cfg /app/setup.cfg
COPY ./bin/runtests.sh /runtests.sh
# Stage 3.3 - Copy source code
COPY --from=frontend-build /app/src/ztc/static/fonts /app/src/ztc/static/fonts
COPY --from=frontend-build /app/src/ztc/static/css /app/src/ztc/static/css
COPY ./src /app/src
RUN mkdir /app/log && rm /app/src/ztc/conf/test.py
CMD ["/runtests.sh"]
# Stage 4 - Build docker image suitable for execution and deployment
FROM python:3.6-alpine AS production
RUN apk --no-cache add \
ca-certificates \
mailcap \
musl \
pcre \
postgresql \
# lxml dependencies
libxslt \
# pillow dependencies
jpeg \
openjpeg \
zlib
COPY --from=build /usr/local/lib/python3.6 /usr/local/lib/python3.6
COPY --from=build /usr/local/bin/uwsgi /usr/local/bin/uwsgi
# Stage 4.2 - Copy source code
WORKDIR /app
COPY ./bin/docker_start.sh /start.sh
RUN mkdir /app/log
COPY --from=frontend-build /app/src/ztc/static/fonts /app/src/ztc/static/fonts
COPY --from=frontend-build /app/src/ztc/static/css /app/src/ztc/static/css
COPY ./src /app/src
ENV DJANGO_SETTINGS_MODULE=ztc.conf.docker
ARG SECRET_KEY=dummy
# Run collectstatic, so the result is already included in the image
RUN python src/manage.py collectstatic --noinput
EXPOSE 8000
CMD ["/start.sh"]