From 5f5e8368e63cf226281154d3491f8ccd49dd5c1b Mon Sep 17 00:00:00 2001 From: handfly Date: Sun, 3 May 2026 15:25:11 -0400 Subject: [PATCH] Fix Dockerfile to work on IPv4 only --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 95db580..778429f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -23,6 +23,7 @@ COPY nginx.conf /etc/nginx/conf.d/default.conf COPY --from=builder /app/dist /usr/share/nginx/html HEALTHCHECK --interval=30s --timeout=3s --start-period=5s --retries=3 \ - CMD wget --quiet --tries=1 --spider http://localhost/ || exit 1 + CMD wget -q -O /dev/null http://127.0.0.1/ || exit 1 + EXPOSE 80