From e1f9f640571123fed1bdffc7b02201487e72f11c Mon Sep 17 00:00:00 2001 From: Gurjit Singh Date: Wed, 3 Dec 2025 09:37:23 +0100 Subject: [PATCH] fix: install curl in Docker image for healthcheck The HEALTHCHECK command in the Dockerfile was using curl, but curl is not available by default in the nginx:stable-alpine base image. This caused the health checks to always fail. This commit adds curl installation using apk to ensure the healthcheck works correctly. --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index 1da1b70e..6a470f6f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -32,6 +32,8 @@ RUN bun run build FROM nginx:stable-alpine +RUN apk add --no-cache curl + EXPOSE 80/tcp COPY ./nginx/default.conf /etc/nginx/conf.d/default.conf