diff options
author | 2018-09-18 22:19:44 +0200 | |
---|---|---|
committer | 2018-09-18 22:19:44 +0200 | |
commit | 34bc089b66d8cc054a90421daeba02c54c8a2a14 (patch) | |
tree | d2e28cd1932eee5e35fef389281d79677ccafbad | |
parent | Add coverage line to `CONTRIBUTING.md`. (diff) |
Fix up `HEALTHCHECK`.
-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"] |