Add curl to Docker image for Swarm health checks

The runner stage needs curl for the health check command.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
2025-12-14 13:35:57 +01:00
parent ef31ed3564
commit d16ac3d76e

View File

@@ -35,6 +35,9 @@ WORKDIR /app
ENV NODE_ENV=production ENV NODE_ENV=production
# Install curl for health checks
RUN apk add --no-cache curl
RUN addgroup --system --gid 1001 nodejs RUN addgroup --system --gid 1001 nodejs
RUN adduser --system --uid 1001 nextjs RUN adduser --system --uid 1001 nextjs