From ccee2ed407d5b0f2f85112a5d0f71e66139bb08f Mon Sep 17 00:00:00 2001 From: Injun Song Date: Wed, 5 Jun 2024 08:56:52 +0900 Subject: [PATCH] chore(dockerfile): bump grpc health probe from v0.4.11 to v0.4.26 --- build/Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build/Dockerfile b/build/Dockerfile index bcb038eb8..1f1509e83 100644 --- a/build/Dockerfile +++ b/build/Dockerfile @@ -1,4 +1,4 @@ -ARG GRPC_HEALTH_PROBE_VERSION=v0.4.11 +ARG GRPC_HEALTH_PROBE_VERSION=v0.4.26 ARG DEBIAN_FRONTEND=noninteractive ARG VARLOGMR_RPC_PORT=9092 @@ -7,9 +7,9 @@ ARG VARLOGADM_RPC_PORT=9093 ARG VARLOGSN_RPC_PORT=9091 -FROM busybox:1.36.1 AS tools +FROM alpine:3.20.0 AS tools ARG GRPC_HEALTH_PROBE_VERSION -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 \ +RUN wget --no-check-certificate -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