Skip to content

Instantly share code, notes, and snippets.

@elliotforbes
Created July 3, 2018 14:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save elliotforbes/445a4d2e5293733a33427e89b5404f60 to your computer and use it in GitHub Desktop.
Save elliotforbes/445a4d2e5293733a33427e89b5404f60 to your computer and use it in GitHub Desktop.
FROM golang:latest
RUN mkdir /app
ADD ./pkg /app/
WORKDIR /app
RUN go get "github.com/gorilla/mux"
RUN go build -o main .
CMD ["/app/main"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment