From a6d0db174b3bed53cc43841eb520e479281aaa22 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ville=20Skytt=C3=A4?= Date: Sat, 15 Feb 2025 21:45:57 -0100 Subject: [PATCH] Chore: Avoid shell in Docker health check (#444) --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index ea50477..fbb8e6c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -25,6 +25,6 @@ RUN apk upgrade --no-cache && apk add --no-cache tzdata EXPOSE 1025/tcp 1110/tcp 8025/tcp -HEALTHCHECK --interval=15s --start-period=10s --start-interval=1s CMD /mailpit readyz +HEALTHCHECK --interval=15s --start-period=10s --start-interval=1s CMD ["/mailpit", "readyz"] ENTRYPOINT ["/mailpit"]