From d16ac3d76e08053004856a7a24ee2ae6dae5e008 Mon Sep 17 00:00:00 2001 From: christiankrag Date: Sun, 14 Dec 2025 13:35:57 +0100 Subject: [PATCH] Add curl to Docker image for Swarm health checks MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index c049eb7..081b454 100644 --- a/Dockerfile +++ b/Dockerfile @@ -35,6 +35,9 @@ WORKDIR /app ENV NODE_ENV=production +# Install curl for health checks +RUN apk add --no-cache curl + RUN addgroup --system --gid 1001 nodejs RUN adduser --system --uid 1001 nextjs