feat(docker): add curl for healthcheck support in E2E tests

This commit is contained in:
Johannes Millan 2026-01-21 11:31:12 +01:00
parent 0e13e14520
commit d9cdbf43f2

View file

@ -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