move grpc-health-probe download below wget install

This commit is contained in:
Ahmet Alp Balkan 2018-11-27 16:04:25 -08:00 committed by GitHub
parent 8fe5c0cb1d
commit 42113d1921
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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 .