Dockerfile: Make it build with Go 1.18
authorAnthony Fok <foka@debian.org>
Mon, 21 Mar 2022 16:25:12 +0000 (10:25 -0600)
committerAnthony Fok <anthony.fok@canada.ca>
Tue, 22 Mar 2022 03:01:24 +0000 (21:01 -0600)
Dockerfile

index fcae03f5484557733d02a7bd14f1c804e7bc2bbf..885809fabf238b3a914f08a92d70da75a091a43d 100755 (executable)
@@ -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