From edd3ee52bd7b752065aa00653be970ba232c883e Mon Sep 17 00:00:00 2001 From: paspo Date: Tue, 29 Jul 2025 10:09:50 +0200 Subject: [PATCH] fix healthcheck --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 6ae005b..9811b75 100644 --- a/Dockerfile +++ b/Dockerfile @@ -18,6 +18,6 @@ COPY rootfs / COPY --from=build /dnsproxy /app/ HEALTHCHECK --interval=30s --start-period=5s --timeout=10s \ - CMD /usr/bin/host -T -p 1053 asperti.com 127.0.0.1 + CMD /usr/bin/host -T -p ${PORT} asperti.com 127.0.0.1 ENTRYPOINT ["/sbin/tini", "--", "/bin/sh", "/app/entrypoint.sh"]