From b3603d45045ec86000dbae4415088e4eecc3f862 Mon Sep 17 00:00:00 2001 From: Matteo Ruina Date: Sun, 18 Dec 2022 14:25:41 +0100 Subject: [PATCH] Update Dockerfile Use grpc_health_probe v.0.4.14 --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 0952b6e..32737d8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,8 +1,8 @@ FROM alpine:3.12.4 as builder -ENV GRPC_HEALTH_PROBE_VERSION=v0.3.1 +ENV GRPC_HEALTH_PROBE_VERSION=v0.4.14 RUN wget -qO/bin/grpc_health_probe https://github.com/grpc-ecosystem/grpc-health-probe/releases/download/${GRPC_HEALTH_PROBE_VERSION}/grpc_health_probe-linux-amd64 && \ chmod +x /bin/grpc_health_probe -FROM gcr.io/distroless/base-debian10 +FROM gcr.io/distroless/base-debian11 COPY --from=builder /bin/grpc_health_probe /bin/grpc_health_probe -ENTRYPOINT [ "/bin/grpc_health_probe"] \ No newline at end of file +ENTRYPOINT [ "/bin/grpc_health_probe"]