forked from TMS-Uni-Stuttgart/Tutor-Management-System
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDockerfile
79 lines (61 loc) · 1.89 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
# =============================================
#
# Build frontend & backend
#
# This also copies the builded frontend into the server.
#
# =============================================
FROM node:12-alpine as build
COPY client/ tms/client/
COPY server/ tms/server/
COPY package.json tms/
COPY yarn.lock tms/
WORKDIR /tms/
# Do not download puppeteer and mongo-memory-server binaries.
# They are not needed for building.
ENV PUPPETEER_SKIP_CHROMIUM_DOWNLOAD true
ENV MONGOMS_DISABLE_POSTINSTALL 1
RUN yarn && yarn build
# =============================================
#
# Create the image which runs the server
#
# =============================================
FROM alpine:3
# Installs latest Chromium package.
RUN apk add --no-cache \
chromium \
nss \
freetype \
freetype-dev \
harfbuzz \
ca-certificates \
ttf-freefont \
terminus-font \
nodejs-current \
yarn
COPY --from=build tms/server/dist tms/server
COPY package.json /tms
COPY yarn.lock /tms
COPY server/package.json /tms/server
# Tell Puppeteer to skip installing Chrome. We'll be using the installed package.
ENV PUPPETEER_SKIP_CHROMIUM_DOWNLOAD true
# Tell the PDFService where to find the Chrome executable.
ENV TMS_PUPPETEER_EXEC_PATH "/usr/bin/chromium-browser"
# Set the puppeteer version to match the one of the latest available chromium alpine package.
RUN yarn add [email protected]
# Add user so we don't need --no-sandbox.
RUN addgroup -S pptruser && adduser -S -g pptruser pptruser \
&& mkdir -p /home/pptruser/Downloads /app \
&& chown -R pptruser:pptruser /home/pptruser \
&& chown -R pptruser:pptruser /app \
&& chown -R pptruser:pptruser /tms
# Run everything after as non-privileged user.
USER pptruser
WORKDIR /tms
ENV NODE_ENV 'production'
RUN yarn install --production
# Set up container entrypoint to be the server file.
EXPOSE 8080
WORKDIR /tms/server
ENTRYPOINT [ "node", "main.js" ]