File tree 10 files changed +10
-10
lines changed
10 files changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ RUN mkdir -p /opt/cprof && \
36
36
| tar xzv -C /opt/cprof && \
37
37
rm -rf profiler_java_agent.tar.gz
38
38
39
- RUN GRPC_HEALTH_PROBE_VERSION=v0.4.6 && \
39
+ RUN GRPC_HEALTH_PROBE_VERSION=v0.4.11 && \
40
40
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 && \
41
41
chmod +x /bin/grpc_health_probe
42
42
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
22
22
23
23
# https://mcr.microsoft.com/v2/dotnet/runtime-deps/tags/list
24
24
FROM 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 && \
26
26
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 && \
27
27
chmod +x /bin/grpc_health_probe
28
28
WORKDIR /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
26
26
# Installing procps on the container to enable debugging of .NET Core
27
27
RUN apt-get update \
28
28
&& 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 && \
30
30
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 && \
31
31
chmod +x /bin/grpc_health_probe
32
32
WORKDIR /app
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ RUN go build -gcflags="${SKAFFOLD_GO_GCFLAGS}" -o /checkoutservice .
29
29
30
30
FROM alpine as release
31
31
RUN apk add --no-cache ca-certificates
32
- RUN GRPC_HEALTH_PROBE_VERSION=v0.4.6 && \
32
+ RUN GRPC_HEALTH_PROBE_VERSION=v0.4.11 && \
33
33
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 && \
34
34
chmod +x /bin/grpc_health_probe
35
35
WORKDIR /src
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ RUN npm install --only=production
31
31
32
32
FROM base
33
33
34
- RUN GRPC_HEALTH_PROBE_VERSION=v0.4.6 && \
34
+ RUN GRPC_HEALTH_PROBE_VERSION=v0.4.11 && \
35
35
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 && \
36
36
chmod +x /bin/grpc_health_probe
37
37
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ RUN apt-get -qq update \
36
36
wget
37
37
38
38
# Download the grpc health probe
39
- RUN GRPC_HEALTH_PROBE_VERSION=v0.4.6 && \
39
+ RUN GRPC_HEALTH_PROBE_VERSION=v0.4.11 && \
40
40
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 && \
41
41
chmod +x /bin/grpc_health_probe
42
42
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ RUN npm install --only=production
31
31
32
32
FROM base
33
33
34
- RUN GRPC_HEALTH_PROBE_VERSION=v0.4.6 && \
34
+ RUN GRPC_HEALTH_PROBE_VERSION=v0.4.11 && \
35
35
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 && \
36
36
chmod +x /bin/grpc_health_probe
37
37
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ RUN go build -gcflags="${SKAFFOLD_GO_GCFLAGS}" -o /productcatalogservice .
28
28
29
29
FROM alpine AS release
30
30
RUN apk add --no-cache ca-certificates
31
- RUN GRPC_HEALTH_PROBE_VERSION=v0.4.6 && \
31
+ RUN GRPC_HEALTH_PROBE_VERSION=v0.4.11 && \
32
32
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 && \
33
33
chmod +x /bin/grpc_health_probe
34
34
WORKDIR /src
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ RUN apt-get update -qqy && \
20
20
ENV PYTHONUNBUFFERED=0
21
21
22
22
# download the grpc health probe
23
- RUN GRPC_HEALTH_PROBE_VERSION=v0.4.6 && \
23
+ RUN GRPC_HEALTH_PROBE_VERSION=v0.4.11 && \
24
24
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 && \
25
25
chmod +x /bin/grpc_health_probe
26
26
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 .
28
28
29
29
FROM alpine as release
30
30
RUN apk add --no-cache ca-certificates
31
- RUN GRPC_HEALTH_PROBE_VERSION=v0.4.6 && \
31
+ RUN GRPC_HEALTH_PROBE_VERSION=v0.4.11 && \
32
32
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 && \
33
33
chmod +x /bin/grpc_health_probe
34
34
WORKDIR /src
You can’t perform that action at this time.
0 commit comments