Created
June 8, 2017 01:12
-
-
Save bscott/4ef8a2a6c5e836982bdf9f94b48fba9d to your computer and use it in GitHub Desktop.
Golang & Glide 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 billyteves/alpine-golang-glide:1.2.0 | |
| ADD . /go/src/app | |
| WORKDIR /go/src/app | |
| RUN glide install | |
| RUN go install . | |
| ENTRYPOINT /go/bin/app | |
| EXPOSE 3000 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment