Update Dockerfile to Go 1.11
authorzyfdegh <zyfdegh@users.noreply.github.com>
Fri, 31 Aug 2018 07:05:52 +0000 (15:05 +0800)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Fri, 31 Aug 2018 07:05:52 +0000 (09:05 +0200)
Fixes #5145

Dockerfile

index 919b02237d61c857663ddbd3b27095a0a0c02d75..2cd4a14d6cf3ae2255b9c2752d9df0a54c4f7d5b 100755 (executable)
@@ -2,19 +2,18 @@
 # Twitter:      https://twitter.com/gohugoio
 # Website:      https://gohugo.io/
 
-FROM golang:1.10.3-alpine3.7 AS build
+FROM golang:1.11-alpine3.7 AS build
 
 ENV CGO_ENABLED=0
 ENV GOOS=linux
+ENV GO111MODULE=on
 
 WORKDIR /go/src/github.com/gohugoio/hugo
 RUN apk add --no-cache \
     git \
-    musl-dev && \
-  go get github.com/golang/dep/cmd/dep
+    musl-dev
 COPY . /go/src/github.com/gohugoio/hugo/
-RUN dep ensure -vendor-only && \
-  go install -ldflags '-s -w'
+RUN go install -ldflags '-s -w'
 
 # ---