From: Anthony Fok Date: Mon, 21 Mar 2022 16:25:12 +0000 (-0600) Subject: Dockerfile: Make it build with Go 1.18 X-Git-Tag: v0.96.0~13 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=8309a2b1c12009fffb1da574b4d19715f8566683;p=brevno-suite%2Fhugo Dockerfile: Make it build with Go 1.18 --- diff --git a/Dockerfile b/Dockerfile index fcae03f5..885809fa 100755 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ # Twitter: https://twitter.com/gohugoio # Website: https://gohugo.io/ -FROM golang:1.16-alpine AS build +FROM golang:1.18-alpine AS build # Optionally set HUGO_BUILD_TAGS to "extended" or "nodeploy" when building like so: # docker build --build-arg HUGO_BUILD_TAGS=extended . @@ -20,7 +20,7 @@ COPY . /go/src/github.com/gohugoio/hugo/ # gcc/g++ are required to build SASS libraries for extended version RUN apk update && \ apk add --no-cache gcc g++ musl-dev git && \ - go get github.com/magefile/mage + go install github.com/magefile/mage RUN mage hugo && mage install