Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add curl as dependency in docker container
The health check in `docker-compose.yml` uses curl, but the `alpine:3.7` image this Dockerfile builds on doesn't include curl, leading to the health check failing: { "Start": "2018-03-06T20:48:57.293359619-06:00", "End": "2018-03-06T20:48:57.388576132-06:00", "ExitCode": -1, "Output": "OCI runtime exec failed: exec failed: container_linux.go:348: starting container process caused \"exec: \\\"curl\\\": executable file not found in $PATH\": unknown" } This should be reproducible by simply following the docker-based installation instructions; without this change my `docker-compose up` fails because the health check fails. This change made the docker installation instructions work for me.
- Loading branch information