proxy: fix broken docker healthcheck

This commit is contained in:
Jens Langhammer 2020-10-05 22:53:26 +02:00
parent ac88bd5d44
commit 9954eeac86
1 changed files with 1 additions and 1 deletions

View File

@ -11,6 +11,6 @@ FROM gcr.io/distroless/base-debian10:debug
COPY --from=builder /work/proxy /
HEALTHCHECK CMD [ "wget", "spider", "http://localhost:4180/pbprox/ping" ]
HEALTHCHECK CMD [ "wget", "--spider", "http://localhost:4180/pbprox/ping" ]
ENTRYPOINT ["/proxy"]