From 08856f9a8d46aa648b62dea8e5ca27bbff574261 Mon Sep 17 00:00:00 2001 From: Kharec Date: Thu, 25 Dec 2025 18:34:57 +0100 Subject: [PATCH] feat: install curl in docker to perform health check --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 7e5c825..d324126 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,7 +13,7 @@ RUN CGO_ENABLED=0 GOOS=${TARGETOS} GOARCH=${TARGETARCH} go build -ldflags="-s -w # building the application image FROM alpine:3.23 RUN addgroup -S goyco && adduser -S -G goyco goyco \ - && apk add --no-cache ca-certificates tzdata + && apk add --no-cache ca-certificates curl tzdata WORKDIR /app COPY --from=go-builder /out/goyco ./goyco COPY --from=go-builder /src/internal/static ./internal/static