curl -> wget

This commit is contained in:
Alexander Voitov 2019-07-02 23:25:33 +03:00
parent 135e453cb9
commit d361405db3

View File

@ -12,6 +12,6 @@ ADD cadvisor /usr/bin/cadvisor
EXPOSE 8080
HEALTHCHECK --interval=30s --timeout=3s \
CMD curl -f http://localhost:8080/healthz || exit 1
CMD wget --quiet --tries=1 --spider http://localhost:8080/healthz || exit 1
ENTRYPOINT ["/usr/bin/cadvisor", "-logtostderr"]