Update Dockerfile and Snap build to reflect move to dep
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Sat, 21 Oct 2017 14:41:45 +0000 (16:41 +0200)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Sat, 21 Oct 2017 17:30:23 +0000 (19:30 +0200)
See #3988

Dockerfile
snapcraft.yaml

index e0da7d83401161aef85ebb4438a94956da7830b5..889584b616be422a57456764a4afc90c4927dfb5 100644 (file)
@@ -1,11 +1,10 @@
 FROM golang:1.9.0-alpine3.6 AS build
 
 RUN apk add --no-cache --virtual git musl-dev
-RUN go get github.com/kardianos/govendor
+RUN go get github.com/golang/dep/cmd/dep
 
-ADD vendor/vendor.json /go/src/github.com/gohugoio/hugo/vendor/vendor.json
 WORKDIR /go/src/github.com/gohugoio/hugo
-RUN govendor sync
+RUN dep ensure
 ADD . /go/src/github.com/gohugoio/hugo/
 RUN go install -ldflags '-s -w'
 
index c9481078fda2788abd8140923b0b98a6defaec70..68ba7aba359616d0a6b7bcceeb52afefe8676c2e 100644 (file)
@@ -31,7 +31,7 @@ parts:
       go get github.com/magefile/mage
       mage vendor
       mage test
-      rm -f $GOPATH/bin/govendor
+      rm -f $GOPATH/bin/dep
       rm -f $GOPATH/bin/mage
     install: |
       strip --remove-section=.comment --remove-section=.note $SNAPCRAFT_PART_INSTALL/bin/hugo