Add healthcheck dependency

Health check from `Dockerfile` uses `curl` but it is not installed by default. This causes container to be forever unhealthy and thus ignored by other apps, for example Traefik.
This commit is contained in:
Nikola Kotur 2024-02-07 09:53:28 +01:00
parent 22de459a72
commit 9a76b6ece4
No known key found for this signature in database
GPG Key ID: EE196BB2264B2623
1 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@ RUN make build \
FROM alpine@sha256:48d9183eb12a05c99bcc0bf44a003607b8e941e1d4f41f9ad12bdcc4b5672f86
RUN apk -U upgrade \
&& apk add --no-cache openssl ca-certificates
&& apk add --no-cache openssl ca-certificates curl
COPY --from=build --chown=daemon:daemon /stage /go