From d9cdbf43f2da5a1e1985abe4dd28511de67abc51 Mon Sep 17 00:00:00 2001 From: Johannes Millan Date: Wed, 21 Jan 2026 11:31:12 +0100 Subject: [PATCH] feat(docker): add curl for healthcheck support in E2E tests --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 5b6f26652..5dfcbe650 100644 --- a/Dockerfile +++ b/Dockerfile @@ -45,7 +45,7 @@ FROM nginx:1 ENV APP_PORT=80 # Install runtime dependencies -RUN apt-get update && apt-get install -y --no-install-recommends jq && rm -rf /var/lib/apt/lists/* +RUN apt-get update && apt-get install -y --no-install-recommends jq curl && rm -rf /var/lib/apt/lists/* # Copy built app and configs COPY --from=build /app/dist/browser /usr/share/nginx/html