-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use grpc_health_probe v.0.4.14
- Loading branch information
Showing
1 changed file
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
FROM alpine:3.12.4 as builder | ||
ENV GRPC_HEALTH_PROBE_VERSION=v0.3.1 | ||
ENV GRPC_HEALTH_PROBE_VERSION=v0.4.14 | ||
RUN 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 | ||
|
||
FROM gcr.io/distroless/base-debian10 | ||
FROM gcr.io/distroless/base-debian11 | ||
COPY --from=builder /bin/grpc_health_probe /bin/grpc_health_probe | ||
ENTRYPOINT [ "/bin/grpc_health_probe"] | ||
ENTRYPOINT [ "/bin/grpc_health_probe"] |