From f1ec202f0805b8e75e70dcdf063ccedccea2d5f0 Mon Sep 17 00:00:00 2001 From: Dom Date: Wed, 14 Feb 2024 16:09:54 -0500 Subject: [PATCH] Add curl to healthchecks on deploy as well --- go/Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/go/Dockerfile b/go/Dockerfile index 8834af7..9496cb8 100644 --- a/go/Dockerfile +++ b/go/Dockerfile @@ -11,6 +11,8 @@ RUN go get github.com/githubnemo/CompileDaemon RUN go install github.com/githubnemo/CompileDaemon FROM alpine:latest +# Add curl for healthchecks +RUN apk add curl # Copy the binary from the builder COPY --from=builder /app/service . ENTRYPOINT [ "./service" ]