From: Steffen Windoffer Date: Wed, 19 Oct 2022 17:58:25 +0000 (+0200) Subject: Update Go and Alpine version in Dockerfile X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=6275aad9e;p=brevno-suite%2Fhugo Update Go and Alpine version in Dockerfile --- diff --git a/Dockerfile b/Dockerfile index 885809fab..7d0980035 100755 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ # Twitter: https://twitter.com/gohugoio # Website: https://gohugo.io/ -FROM golang:1.18-alpine AS build +FROM golang:1.19-alpine AS build # Optionally set HUGO_BUILD_TAGS to "extended" or "nodeploy" when building like so: # docker build --build-arg HUGO_BUILD_TAGS=extended . @@ -26,7 +26,7 @@ RUN mage hugo && mage install # --- -FROM alpine:3.12 +FROM alpine:3.16 COPY --from=build /go/bin/hugo /usr/bin/hugo