Skip to content

Commit 2c5d0c9

Browse files
committed
install postgresclient in the runner
1 parent efdfb12 commit 2c5d0c9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: apps/deploy-worker/Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@ FROM node:22-alpine AS base
22

33
FROM base AS builder
44

5-
RUN apk add --no-cache postgresql16-client
6-
75
WORKDIR /app
86

97
RUN npm install -g turbo@^2
@@ -25,6 +23,8 @@ RUN npx turbo run build [email protected]/deploy-worker
2523

2624
FROM base AS runner
2725

26+
RUN apk add --no-cache postgresql16-client
27+
2828
# Don't run production as root
2929
RUN addgroup --system --gid 1001 nodejs
3030
RUN adduser --system --uid 1001 nodejs

0 commit comments

Comments
 (0)