From f7d8234f6a650dd40123f3df8502e5fe2efc992f Mon Sep 17 00:00:00 2001 From: ngc2207 Date: Wed, 29 Jan 2025 22:19:10 +0800 Subject: [PATCH] feat(docker): add curl installation for health check support --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index a6d2eaf..28d4d34 100644 --- a/Dockerfile +++ b/Dockerfile @@ -52,6 +52,9 @@ RUN \ FROM base AS runner WORKDIR /app +# Install curl tool to ensure the health check works correctly +RUN apk add --no-cache curl + ENV NODE_ENV=production # Uncomment the following line in case you want to disable telemetry during runtime. # ENV NEXT_TELEMETRY_DISABLED=1