fix: docker healthcheck (#11798)

* Fix docker healthcheck.

* Update Dockerfile
This commit is contained in:
PM Extra 2020-11-25 04:39:10 +08:00 committed by GitHub
parent c0224aa928
commit 75086f8979
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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}