diff --git a/src/adservice/Dockerfile b/src/adservice/Dockerfile index 8fdb77cb895..62c8c728e44 100644 --- a/src/adservice/Dockerfile +++ b/src/adservice/Dockerfile @@ -36,7 +36,7 @@ RUN mkdir -p /opt/cprof && \ | tar xzv -C /opt/cprof && \ rm -rf profiler_java_agent.tar.gz -RUN GRPC_HEALTH_PROBE_VERSION=v0.4.6 && \ +RUN GRPC_HEALTH_PROBE_VERSION=v0.4.11 && \ 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 diff --git a/src/cartservice/src/Dockerfile b/src/cartservice/src/Dockerfile index 552d8f6218f..16fc2fa09b0 100644 --- a/src/cartservice/src/Dockerfile +++ b/src/cartservice/src/Dockerfile @@ -22,7 +22,7 @@ RUN dotnet publish cartservice.csproj -p:PublishSingleFile=true -r linux-musl-x6 # https://mcr.microsoft.com/v2/dotnet/runtime-deps/tags/list FROM mcr.microsoft.com/dotnet/runtime-deps:6.0.3-alpine3.14-amd64 -RUN GRPC_HEALTH_PROBE_VERSION=v0.4.6 && \ +RUN GRPC_HEALTH_PROBE_VERSION=v0.4.11 && \ 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 WORKDIR /app diff --git a/src/cartservice/src/Dockerfile.debug b/src/cartservice/src/Dockerfile.debug index 246f7994d5e..52107a21cfc 100644 --- a/src/cartservice/src/Dockerfile.debug +++ b/src/cartservice/src/Dockerfile.debug @@ -26,7 +26,7 @@ FROM mcr.microsoft.com/dotnet/aspnet:6.0 AS final # Installing procps on the container to enable debugging of .NET Core RUN apt-get update \ && apt-get install -y unzip procps wget -RUN GRPC_HEALTH_PROBE_VERSION=v0.4.6 && \ +RUN GRPC_HEALTH_PROBE_VERSION=v0.4.11 && \ 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 WORKDIR /app diff --git a/src/checkoutservice/Dockerfile b/src/checkoutservice/Dockerfile index d1d8c9e2178..3d7d3089085 100644 --- a/src/checkoutservice/Dockerfile +++ b/src/checkoutservice/Dockerfile @@ -29,7 +29,7 @@ RUN go build -gcflags="${SKAFFOLD_GO_GCFLAGS}" -o /checkoutservice . FROM alpine as release RUN apk add --no-cache ca-certificates -RUN GRPC_HEALTH_PROBE_VERSION=v0.4.6 && \ +RUN GRPC_HEALTH_PROBE_VERSION=v0.4.11 && \ 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 WORKDIR /src diff --git a/src/currencyservice/Dockerfile b/src/currencyservice/Dockerfile index 7f1a1b73fbb..d7e311bdab5 100644 --- a/src/currencyservice/Dockerfile +++ b/src/currencyservice/Dockerfile @@ -31,7 +31,7 @@ RUN npm install --only=production FROM base -RUN GRPC_HEALTH_PROBE_VERSION=v0.4.6 && \ +RUN GRPC_HEALTH_PROBE_VERSION=v0.4.11 && \ 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 diff --git a/src/emailservice/Dockerfile b/src/emailservice/Dockerfile index 84226fdb459..b2c59dbeb64 100644 --- a/src/emailservice/Dockerfile +++ b/src/emailservice/Dockerfile @@ -36,7 +36,7 @@ RUN apt-get -qq update \ wget # Download the grpc health probe -RUN GRPC_HEALTH_PROBE_VERSION=v0.4.6 && \ +RUN GRPC_HEALTH_PROBE_VERSION=v0.4.11 && \ 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 diff --git a/src/paymentservice/Dockerfile b/src/paymentservice/Dockerfile index aaefe6c2e3f..03e8bfcda0b 100644 --- a/src/paymentservice/Dockerfile +++ b/src/paymentservice/Dockerfile @@ -31,7 +31,7 @@ RUN npm install --only=production FROM base -RUN GRPC_HEALTH_PROBE_VERSION=v0.4.6 && \ +RUN GRPC_HEALTH_PROBE_VERSION=v0.4.11 && \ 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 diff --git a/src/productcatalogservice/Dockerfile b/src/productcatalogservice/Dockerfile index 3949773b861..e67646c9f03 100644 --- a/src/productcatalogservice/Dockerfile +++ b/src/productcatalogservice/Dockerfile @@ -28,7 +28,7 @@ RUN go build -gcflags="${SKAFFOLD_GO_GCFLAGS}" -o /productcatalogservice . FROM alpine AS release RUN apk add --no-cache ca-certificates -RUN GRPC_HEALTH_PROBE_VERSION=v0.4.6 && \ +RUN GRPC_HEALTH_PROBE_VERSION=v0.4.11 && \ 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 WORKDIR /src diff --git a/src/recommendationservice/Dockerfile b/src/recommendationservice/Dockerfile index 82fd106edfd..d7f2989c0b3 100644 --- a/src/recommendationservice/Dockerfile +++ b/src/recommendationservice/Dockerfile @@ -20,7 +20,7 @@ RUN apt-get update -qqy && \ ENV PYTHONUNBUFFERED=0 # download the grpc health probe -RUN GRPC_HEALTH_PROBE_VERSION=v0.4.6 && \ +RUN GRPC_HEALTH_PROBE_VERSION=v0.4.11 && \ 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 diff --git a/src/shippingservice/Dockerfile b/src/shippingservice/Dockerfile index a82567410be..747aa4593a7 100644 --- a/src/shippingservice/Dockerfile +++ b/src/shippingservice/Dockerfile @@ -28,7 +28,7 @@ RUN go build -gcflags="${SKAFFOLD_GO_GCFLAGS}" -o /go/bin/shippingservice . FROM alpine as release RUN apk add --no-cache ca-certificates -RUN GRPC_HEALTH_PROBE_VERSION=v0.4.6 && \ +RUN GRPC_HEALTH_PROBE_VERSION=v0.4.11 && \ 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 WORKDIR /src