File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ RUN mkdir -p /opt/cprof && \
3636 | tar xzv -C /opt/cprof && \
3737 rm -rf profiler_java_agent.tar.gz
3838
39- RUN GRPC_HEALTH_PROBE_VERSION=v0.4.6 && \
39+ RUN GRPC_HEALTH_PROBE_VERSION=v0.4.11 && \
4040 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 && \
4141 chmod +x /bin/grpc_health_probe
4242
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ RUN dotnet publish cartservice.csproj -p:PublishSingleFile=true -r linux-musl-x6
2222
2323# https://mcr.microsoft.com/v2/dotnet/runtime-deps/tags/list
2424FROM mcr.microsoft.com/dotnet/runtime-deps:6.0.3-alpine3.14-amd64
25- RUN GRPC_HEALTH_PROBE_VERSION=v0.4.6 && \
25+ RUN GRPC_HEALTH_PROBE_VERSION=v0.4.11 && \
2626 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 && \
2727 chmod +x /bin/grpc_health_probe
2828WORKDIR /app
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ FROM mcr.microsoft.com/dotnet/aspnet:6.0 AS final
2626# Installing procps on the container to enable debugging of .NET Core
2727RUN apt-get update \
2828 && apt-get install -y unzip procps wget
29- RUN GRPC_HEALTH_PROBE_VERSION=v0.4.6 && \
29+ RUN GRPC_HEALTH_PROBE_VERSION=v0.4.11 && \
3030 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 && \
3131 chmod +x /bin/grpc_health_probe
3232WORKDIR /app
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ RUN go build -gcflags="${SKAFFOLD_GO_GCFLAGS}" -o /checkoutservice .
2929
3030FROM alpine as release
3131RUN apk add --no-cache ca-certificates
32- RUN GRPC_HEALTH_PROBE_VERSION=v0.4.6 && \
32+ RUN GRPC_HEALTH_PROBE_VERSION=v0.4.11 && \
3333 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 && \
3434 chmod +x /bin/grpc_health_probe
3535WORKDIR /src
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ RUN npm install --only=production
3131
3232FROM base
3333
34- RUN GRPC_HEALTH_PROBE_VERSION=v0.4.6 && \
34+ RUN GRPC_HEALTH_PROBE_VERSION=v0.4.11 && \
3535 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 && \
3636 chmod +x /bin/grpc_health_probe
3737
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ RUN apt-get -qq update \
3636 wget
3737
3838# Download the grpc health probe
39- RUN GRPC_HEALTH_PROBE_VERSION=v0.4.6 && \
39+ RUN GRPC_HEALTH_PROBE_VERSION=v0.4.11 && \
4040 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 && \
4141 chmod +x /bin/grpc_health_probe
4242
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ RUN npm install --only=production
3131
3232FROM base
3333
34- RUN GRPC_HEALTH_PROBE_VERSION=v0.4.6 && \
34+ RUN GRPC_HEALTH_PROBE_VERSION=v0.4.11 && \
3535 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 && \
3636 chmod +x /bin/grpc_health_probe
3737
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ RUN go build -gcflags="${SKAFFOLD_GO_GCFLAGS}" -o /productcatalogservice .
2828
2929FROM alpine AS release
3030RUN apk add --no-cache ca-certificates
31- RUN GRPC_HEALTH_PROBE_VERSION=v0.4.6 && \
31+ RUN GRPC_HEALTH_PROBE_VERSION=v0.4.11 && \
3232 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 && \
3333 chmod +x /bin/grpc_health_probe
3434WORKDIR /src
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ RUN apt-get update -qqy && \
2020ENV PYTHONUNBUFFERED=0
2121
2222# download the grpc health probe
23- RUN GRPC_HEALTH_PROBE_VERSION=v0.4.6 && \
23+ RUN GRPC_HEALTH_PROBE_VERSION=v0.4.11 && \
2424 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 && \
2525 chmod +x /bin/grpc_health_probe
2626
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ RUN go build -gcflags="${SKAFFOLD_GO_GCFLAGS}" -o /go/bin/shippingservice .
2828
2929FROM alpine as release
3030RUN apk add --no-cache ca-certificates
31- RUN GRPC_HEALTH_PROBE_VERSION=v0.4.6 && \
31+ RUN GRPC_HEALTH_PROBE_VERSION=v0.4.11 && \
3232 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 && \
3333 chmod +x /bin/grpc_health_probe
3434WORKDIR /src
You can’t perform that action at this time.
0 commit comments