# 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 .
# 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