Use godep in Dockerfile

This commit is contained in:
Federico Poli 2014-08-08 15:14:21 +02:00
parent 43a0a46f47
commit e2f85b6627

View file

@ -10,13 +10,15 @@ RUN wget https://go.googlecode.com/files/go1.2.src.tar.gz && tar zxvf go1.2.src.
ENV PATH $PATH:/go/bin:/gocode/bin
ENV GOPATH /gocode
RUN go get github.com/tools/godep
RUN mkdir -p /gocode/src/github.com/drone
ADD . /gocode/src/github.com/drone/drone
WORKDIR /gocode/src/github.com/drone/drone
RUN make deps
RUN godep restore
RUN make
RUN make install