diff --git a/src/cartservice/Dockerfile b/src/cartservice/Dockerfile index fdf0d93..f4d9b39 100644 --- a/src/cartservice/Dockerfile +++ b/src/cartservice/Dockerfile @@ -8,10 +8,6 @@ RUN dotnet restore && \ # cartservice FROM gcr.io/dotnet-debugger/aspnetcore:2.1 -RUN GRPC_HEALTH_PROBE_VERSION=v0.2.0 && \ - 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 - # Dependencies for runtime # busybox-extras => telnet RUN apt-get install -q -y --no-install-recommends \ @@ -24,6 +20,11 @@ RUN apt-get install -q -y --no-install-recommends \ musl-dev \ wget + +RUN GRPC_HEALTH_PROBE_VERSION=v0.2.0 && \ + 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 COPY --from=builder /cartservice .