Skip to content

Instantly share code, notes, and snippets.

View lesomnus's full-sized avatar

Seunghyun Hwang lesomnus

View GitHub Profile
@lesomnus
lesomnus / Dockerfile
Last active July 30, 2019 16:48
Build Docker go app image using local "GOPATH/src" outside of the build context without "go get".
FROM golang:latest
# <- means just comment.
### <- means that you might need to modify following line.
### your package path
RUN mkdir -p /go/src/your/package \
### if you dont have internal packages, delete this line.