This is an automated email from the ASF dual-hosted git repository.

willbarrett pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-superset.git


The following commit(s) were added to refs/heads/master by this push:
     new 75086f8  fix: docker healthcheck (#11798)
75086f8 is described below

commit 75086f8979c68d07ac1b7381beb1ff12f02ba23a
Author: PM Extra <[email protected]>
AuthorDate: Wed Nov 25 04:39:10 2020 +0800

    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 53a2abc..fc47f7c 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}
 

Reply via email to