Last active
November 5, 2019 12:31
-
-
Save vkorbes/339448be410045a8154146355362355b to your computer and use it in GitHub Desktop.
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:1.11.9-alpine3.9 | |
| WORKDIR /go/src/app | |
| RUN apk add --no-cache entr git gcc musl-dev | |
| ENV GO111MODULE=on | |
| ENTRYPOINT ["/bin/sh", "-c"] | |
| CMD ["./app"] | |
| ONBUILD COPY go.mod ./ | |
| ONBUILD COPY *.go ./ | |
| ONBUILD RUN go build . |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment