2015-09-15 19:38:54 +00:00
|
|
|
FROM golang:1.5
|
|
|
|
|
2015-09-22 09:29:41 +00:00
|
|
|
RUN go get github.com/tools/godep
|
2015-09-15 19:38:54 +00:00
|
|
|
RUN go get github.com/mitchellh/gox
|
|
|
|
RUN go get github.com/tcnksm/ghr
|
2015-09-22 09:29:41 +00:00
|
|
|
|
|
|
|
ENV PATH /go/src/github.com/emilevauge/traefik/Godeps/_workspace/bin:$PATH
|
2015-09-15 19:38:54 +00:00
|
|
|
|
|
|
|
WORKDIR /go/src/github.com/emilevauge/traefik
|
|
|
|
|
2015-09-22 09:29:41 +00:00
|
|
|
RUN mkdir Godeps
|
|
|
|
COPY Godeps/Godeps.json Godeps/
|
|
|
|
RUN godep restore
|
|
|
|
|
2015-09-15 19:38:54 +00:00
|
|
|
COPY . /go/src/github.com/emilevauge/traefik
|