We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Is: Currently the dockerfile does not contain a health check Wish: Would it be possible to include a health check in the dockerfile?
My current workaround:
ARG BASE_IMAGE="hyperonym/ratus" FROM alpine as builder ADD https://github.com/moparisthebest/static-curl/releases/download/v8.7.1/curl-amd64 /curl RUN chmod 700 /curl FROM ${BASE_IMAGE} COPY --from=builder /curl /curl EXPOSE 80/tcp HEALTHCHECK --interval=60s --timeout=10s --start-period=5s CMD ["/curl", "-sSf", "http://127.0.0.1/readyz"]
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Is: Currently the dockerfile does not contain a health check
Wish: Would it be possible to include a health check in the dockerfile?
My current workaround:
The text was updated successfully, but these errors were encountered: