-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathDockerfile
51 lines (37 loc) · 1.03 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
FROM node:20-alpine3.18
# Installs latest Chromium package.
RUN apk update && apk upgrade && apk add --no-cache \
build-base \
python3 \
chromium \
nss \
freetype \
harfbuzz \
ca-certificates \
ttf-freefont \
git
# Tell Puppeteer to skip installing Chrome. We'll be using the installed package.
ENV PUPPETEER_SKIP_CHROMIUM_DOWNLOAD true
# Add user so we don't need --no-sandbox.
RUN addgroup -S pptruser && adduser --uid 1001 -S -g pptruser pptruser \
&& mkdir -p /home/pptruser/Downloads /app \
&& chown -R pptruser:pptruser /home/pptruser \
&& chown -R pptruser:pptruser /app
WORKDIR /app
RUN chown -R root:root /app
COPY package.json /app
COPY package-lock.json /app
RUN npm ci
# Do some cleanup
RUN apk del --no-cache \
build-base \
python3 \
git
COPY . /app
RUN npm run swagger:create
RUN chown -R pptruser:pptruser /app
# Run everything after as non-privileged user.
USER pptruser
# Create swagger file
EXPOSE 3000
CMD npm run db:create; node bin/www