fix: add curl to frontend runtime image for healthcheck

This commit is contained in:
goose 2026-07-05 11:47:05 -03:00
parent 300072a5d3
commit 7143840ea2
2 changed files with 2 additions and 1 deletions

View file

@ -57,7 +57,7 @@ services:
backend: backend:
condition: service_healthy condition: service_healthy
healthcheck: healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:8080/"] test: ["CMD", "curl", "-sf", "http://localhost:8080/"]
interval: 30s interval: 30s
timeout: 10s timeout: 10s
retries: 3 retries: 3

View file

@ -39,6 +39,7 @@ FROM debian:bookworm-slim
RUN apt-get update && apt-get install -y --no-install-recommends \ RUN apt-get update && apt-get install -y --no-install-recommends \
ca-certificates \ ca-certificates \
curl \
&& rm -rf /var/lib/apt/lists/* && rm -rf /var/lib/apt/lists/*
WORKDIR /app WORKDIR /app