We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bedf999 commit 7b642c8Copy full SHA for 7b642c8
1 file changed
service/Dockerfile
@@ -1,4 +1,4 @@
1
-FROM node:22.19.0 AS builder
+FROM node:22.19.0-trixie AS builder
2
WORKDIR /app
3
4
COPY package.json pnpm-workspace.yaml pnpm-lock.yaml tsconfig.base.json ./
@@ -55,7 +55,7 @@ RUN pnpm build:production && \
55
56
# === TESTER ===
57
58
-FROM node:22.19.0-slim AS tester
+FROM node:22.19.0-trixie-slim AS tester
59
60
61
@@ -68,7 +68,7 @@ CMD pnpm test
68
69
# === PROD ===
70
71
-FROM node:22.19.0-slim
+FROM node:22.19.0-trixie-slim
72
73
74
COPY --from=builder /app/ ./
0 commit comments