1
0
mirror of https://github.com/woodpecker-ci/woodpecker.git synced 2024-12-12 08:23:48 +02:00

Merge pull request #416 from fpoli/godep_in_dockerfile

Use godep in Dockerfile
This commit is contained in:
Brad Rydzewski 2014-09-17 07:55:03 -07:00
commit ae9e1c1d60

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