-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDockerfile
52 lines (36 loc) · 1.24 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
ARG BASE=node:22-slim
FROM ${BASE} AS dependencies
WORKDIR /app
RUN corepack enable && corepack prepare pnpm@latest --activate
COPY package.json pnpm-lock.yaml ./
RUN pnpm install --frozen-lockfile --unsafe-perm
FROM ${BASE} AS builder
RUN apt-get update -y && apt-get install -y curl openssl
RUN corepack enable && corepack prepare pnpm@latest --activate
WORKDIR /app
COPY package.json pnpm-lock.yaml ./
COPY --from=dependencies /app/node_modules ./node_modules
COPY prisma ./prisma
COPY . .
RUN pnpm build
RUN pnpm generate
RUN pnpm prune --prod \
# Clean Prisma non-used files https://github.com/prisma/prisma/issues/11577
&& rm -rf node_modules/.cache/ \
&& rm -rf node_modules/.pnpm/@prisma+engines* \
&& rm -rf node_modules/.pnpm/esbuild* \
&& rm -rf node_modules/.pnpm/@esbuild+linux* \
&& rm -rf node_modules/.pnpm/typescript* \
# Remove cache
&& rm -rf /root/.cache/ \
&& rm -rf /root/.npm/
FROM ${BASE} AS runner
WORKDIR /app
RUN apt-get update -y && apt-get install -y openssl
COPY --from=builder /app/dist ./dist
COPY --from=builder /app/prisma ./prisma
COPY --from=builder /app/node_modules ./node_modules
USER node
ENV FASTIFY_HOST="0.0.0.0"
EXPOSE 3000
CMD [ "node", "-r", "./dist/telemetry.js", "./dist/index.js" ]