Created
August 13, 2020 05:01
-
-
Save madflojo/54b6d766ec0a80693fa3ee398c15db71 to your computer and use it in GitHub Desktop.
example Dockerfile
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM golang:latest | |
ADD . /go/src/github.com/madflojo/healthchecks-example | |
WORKDIR /go/src/github.com/madflojo/healthchecks-example/cmd/healthchecks-example | |
RUN go install -v . | |
ENTRYPOINT ["../../docker-entrypoint.sh"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment