Skip to content

Commit 41bf7f7

Browse files
committed
chore: add missing curl dependency in runner dockerfile stage
1 parent e7f4115 commit 41bf7f7

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

apps/gateway/docker/Dockerfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,9 @@ RUN --mount=type=cache,id=pnpm,target=/pnpm/store pnpm install \
9797

9898
FROM node:22-alpine AS runner
9999

100+
# Required for the health check
101+
RUN apk add --update --no-cache curl
102+
100103
ARG PROJECT_PATH
101104
ARG DD_GIT_REPOSITORY_URL
102105
ARG DD_GIT_COMMIT_SHA

apps/web/docker/Dockerfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -176,6 +176,9 @@ RUN --mount=type=cache,id=pnpm,target=/pnpm/store pnpm prune --prod --no-optiona
176176
# PRODUCTION
177177
FROM node:22-alpine AS runner
178178

179+
# Required for the health check
180+
RUN apk add --update --no-cache curl
181+
179182
ARG PROJECT_PATH
180183
ARG DD_GIT_REPOSITORY_URL
181184
ARG DD_GIT_COMMIT_SHA

docker-compose.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
version: '3.9'
2-
31
services:
42
db:
53
image: postgres:15.8
@@ -92,4 +90,3 @@ services:
9290
volumes:
9391
db-data:
9492
shared-storage:
95-

0 commit comments

Comments
 (0)