We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fa984a4 commit a0c4a99Copy full SHA for a0c4a99
frontend/Dockerfile
@@ -2,7 +2,7 @@ FROM node:23-alpine AS base
2
3
FROM base AS deps
4
5
-RUN apk add --no-cache libc6-compat
+RUN apk add --no-cache libc6-compat curl
6
WORKDIR /app
7
8
COPY package.json pnpm-lock.yaml* .npmrc* ./
infrastructure/applications/pycon_frontend/task.tf
@@ -64,7 +64,7 @@ resource "aws_ecs_task_definition" "pycon_frontend" {
64
retries = 3
65
command = [
66
"CMD-SHELL",
67
- "wget http://localhost:3000/api/health || exit 1"
+ "curl -f http://localhost:3000/api/health || exit 1"
68
]
69
timeout = 3
70
interval = 10
0 commit comments