mirror of
https://github.com/moby/moby.git
synced 2026-07-11 18:13:57 +00:00
Update Dockerfile, curl is used for the healthcheck Add /dump for creating the routine stack trace Signed-off-by: Flavio Crisciani <flavio.crisciani@docker.com>
10 lines
105 B
Docker
10 lines
105 B
Docker
FROM alpine
|
|
|
|
RUN apk --no-cache add curl
|
|
|
|
COPY testMain /app/
|
|
|
|
WORKDIR app
|
|
|
|
ENTRYPOINT ["/app/testMain"]
|