From: zyfdegh Date: Fri, 31 Aug 2018 07:05:52 +0000 (+0800) Subject: Update Dockerfile to Go 1.11 X-Git-Tag: v0.49~63 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=bcbe57c6e9243cbf3823f11b755f57c091cc1866;p=brevno-suite%2Fhugo Update Dockerfile to Go 1.11 Fixes #5145 --- diff --git a/Dockerfile b/Dockerfile index 919b0223..2cd4a14d 100755 --- a/Dockerfile +++ b/Dockerfile @@ -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' # ---