Skip to content

Instantly share code, notes, and snippets.

View edpin's full-sized avatar
💾
Coding

Eduardo Pinheiro edpin

💾
Coding
View GitHub Profile
@icambridge
icambridge / Dockerfile
Created February 4, 2017 12:33
Go dep in docker
FROM golang:1.7
# Set go bin which doesn't appear to be set already.
ENV GOBIN /go/bin
# build directories
RUN mkdir /app
RUN mkdir /go/src/app
ADD . /go/src/app
WORKDIR /go/src/app