We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent efdfb12 commit 2c5d0c9Copy full SHA for 2c5d0c9
apps/deploy-worker/Dockerfile
@@ -2,8 +2,6 @@ FROM node:22-alpine AS base
2
3
FROM base AS builder
4
5
-RUN apk add --no-cache postgresql16-client
6
-
7
WORKDIR /app
8
9
RUN npm install -g turbo@^2
@@ -25,6 +23,8 @@ RUN npx turbo run build [email protected]/deploy-worker
25
23
26
24
FROM base AS runner
27
+RUN apk add --no-cache postgresql16-client
+
28
# Don't run production as root
29
RUN addgroup --system --gid 1001 nodejs
30
RUN adduser --system --uid 1001 nodejs
0 commit comments