diff options
Diffstat (limited to 'docker')
-rw-r--r-- | docker/app/alpine/3.7/Dockerfile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docker/app/alpine/3.7/Dockerfile b/docker/app/alpine/3.7/Dockerfile index 1049af0a..8ff06287 100644 --- a/docker/app/alpine/3.7/Dockerfile +++ b/docker/app/alpine/3.7/Dockerfile @@ -16,5 +16,5 @@ COPY . . RUN apk del \ gcc -HEALTHCHECK curl -I localhost:4000 || exit 1 +HEALTHCHECK CMD curl -I localhost:4000 || exit 1 CMD ["gunicorn", "--workers", "4", "--bind", "0.0.0.0:4000", "pysite.wsgi:application"] |