replace glide with godep

This commit is contained in:
Bradley Cicenas
2017-09-03 01:33:14 +00:00
parent 92ca9bf7eb
commit f6595a02c4
6 changed files with 210 additions and 151 deletions

View File

@@ -1,10 +1,10 @@
FROM quay.io/vektorcloud/go:1.8
FROM quay.io/vektorcloud/go:1.9
RUN apk add --no-cache make
COPY glide.* /go/src/github.com/bcicen/ctop/
COPY Gopkg.* /go/src/github.com/bcicen/ctop/
WORKDIR /go/src/github.com/bcicen/ctop/
RUN glide install
RUN dep ensure -vendor-only
COPY . /go/src/github.com/bcicen/ctop
RUN make build && \