Skip to content

Instantly share code, notes, and snippets.

@bscott
Created June 8, 2017 01:12
Show Gist options
  • Select an option

  • Save bscott/4ef8a2a6c5e836982bdf9f94b48fba9d to your computer and use it in GitHub Desktop.

Select an option

Save bscott/4ef8a2a6c5e836982bdf9f94b48fba9d to your computer and use it in GitHub Desktop.
Golang & Glide DockerFile
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