forked from shayki5/moneyman
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
45 lines (34 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
# ---- Base Node ----
FROM node:18-alpine AS base
RUN apk add --no-cache \
chromium \
nodejs yarn \
nss ca-certificates \
freetype ttf-freefont harfbuzz
# Tell Puppeteer to skip installing Chrome. We'll be using the installed package.
ENV PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=true \
PUPPETEER_EXECUTABLE_PATH=/usr/bin/chromium-browser
# 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
USER pptruser
# ---- Builder ----
FROM base AS builder
WORKDIR /app
COPY tsconfig.json .
COPY package.json .
COPY package-lock.json .
COPY ./patches ./patches
COPY ./src ./src
RUN npm ci
RUN npm run build
# RUN npm prune --production
# ---- Release ----
FROM base AS release
WORKDIR /app
COPY --from=builder /app/package.json .
COPY --from=builder /app/dst ./dst
COPY --from=builder /app/node_modules ./node_modules
CMD ["npm", "run", "start"]