Skip to content

Commit a0c4a99

Browse files
committed
curl
1 parent fa984a4 commit a0c4a99

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

frontend/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ FROM node:23-alpine AS base
22

33
FROM base AS deps
44

5-
RUN apk add --no-cache libc6-compat
5+
RUN apk add --no-cache libc6-compat curl
66
WORKDIR /app
77

88
COPY package.json pnpm-lock.yaml* .npmrc* ./

infrastructure/applications/pycon_frontend/task.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ resource "aws_ecs_task_definition" "pycon_frontend" {
6464
retries = 3
6565
command = [
6666
"CMD-SHELL",
67-
"wget http://localhost:3000/api/health || exit 1"
67+
"curl -f http://localhost:3000/api/health || exit 1"
6868
]
6969
timeout = 3
7070
interval = 10

0 commit comments

Comments
 (0)