From 75086f8979c68d07ac1b7381beb1ff12f02ba23a Mon Sep 17 00:00:00 2001 From: PM Extra Date: Wed, 25 Nov 2020 04:39:10 +0800 Subject: [PATCH] fix: docker healthcheck (#11798) * Fix docker healthcheck. * Update Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 53a2abc0f..fc47f7c0f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -108,7 +108,7 @@ WORKDIR /app USER superset -HEALTHCHECK CMD ["curl", "-f", "http://localhost:$$SUPERSET_PORT/health"] +HEALTHCHECK CMD curl -f "http://localhost:$SUPERSET_PORT/health" EXPOSE ${SUPERSET_PORT}