From 50e48df9936d0324475921b0192517364f26a5be Mon Sep 17 00:00:00 2001 From: Xe Iaso Date: Fri, 13 Jun 2025 15:24:42 -0400 Subject: [PATCH] fix(Dockerfile): add HEALTHCHECK Signed-off-by: Xe Iaso --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 2368eba..e7ec7d3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -25,5 +25,6 @@ RUN apk -U add ca-certificates mailcap COPY --from=build /app/bin/anubis /app/bin/anubis CMD ["/app/bin/anubis"] +HEALTHCHECK --interval=30s --timeout=30s --start-period=5s --retries=3 CMD [ "/app/bin/anubis", "--healthcheck" ] LABEL org.opencontainers.image.source="https://github.com/TecharoHQ/anubis" \ No newline at end of file