-
Notifications
You must be signed in to change notification settings - Fork 174
/
Dockerfile
57 lines (41 loc) · 1.4 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
# Base Node image
FROM node:20-bookworm-slim AS base
# Set for base and all layer that inherit from it
ENV PORT="8080"
ENV NODE_ENV="production"
ARG DEBIAN_FRONTEND="noninteractive"
WORKDIR /src
# Install openssl for Prisma
RUN apt-get update && \
apt-get install -y openssl && \
rm -rf /var/lib/apt/lists/*
# Install all node_modules, including dev dependencies
FROM base AS deps
ADD package.json .
RUN npm install --include=dev
# Build the app and setup production node_modules
FROM base AS build
COPY --from=deps /src/node_modules /src/node_modules
ADD . .
RUN npx prisma generate
RUN npm run build
RUN npm prune --omit=dev
# Finally, build the production image with minimal footprint
FROM base AS release
# Install dependencies
RUN apt-get update && apt-get install -y \
chromium \
fonts-ipafont-gothic fonts-wqy-zenhei fonts-thai-tlwg fonts-kacst fonts-freefont-ttf libxss1 \
--no-install-recommends \
&& rm -rf /var/lib/apt/lists/*
# Set environment variables
ENV PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=true \
PUPPETEER_SKIP_DOWNLOAD=true \
CHROME_EXECUTABLE_PATH="/usr/bin/chromium"
COPY --from=build /src/node_modules /src/node_modules
COPY --from=build /src/app/database /src/app/database
COPY --from=build /src/build /src/build
COPY --from=build /src/package.json /src/package.json
COPY --from=build /src/start.sh /src/start.sh
RUN chmod +x /src/start.sh
ENTRYPOINT [ "/src/start.sh" ]