From cf62f03a701b0611d2eb53d5c322ba72ff3a479a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Moritz=20B=C3=B6hme?= Date: Fri, 3 Oct 2025 18:11:33 +0200 Subject: [PATCH] build(docker): use standard health check interval --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 0653637..875adac 100644 --- a/Dockerfile +++ b/Dockerfile @@ -19,6 +19,6 @@ RUN apt-get update && apt-get install -y curl WORKDIR /app COPY --from=builder /app/target/release/complete-rss /usr/local/bin EXPOSE 3030 -HEALTHCHECK --interval=5s \ +HEALTHCHECK \ CMD curl -f http://localhost:3030/health ENTRYPOINT ["/usr/local/bin/complete-rss"]