From 8a096b0b553d727a00edb1749c2789ec89d2de80 Mon Sep 17 00:00:00 2001 From: Christine Dodrill Date: Sun, 1 Jul 2018 20:46:50 +0000 Subject: [PATCH] fix healthcheck --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 93e7a6d..b6405b6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,5 +12,5 @@ COPY ./blog /site/blog COPY ./css /site/css COPY ./run.sh /site/run.sh -HEALTHCHECK CMD curl --fail http://127.0.0.1:5000 || exit 1 +HEALTHCHECK CMD wget --spider http://127.0.0.1:5000 || exit 1 CMD /site/run.sh