diff options
author | Steffen Windoffer <[email protected]> | 2022-10-19 19:58:25 +0200 |
---|---|---|
committer | GitHub <[email protected]> | 2022-10-19 19:58:25 +0200 |
commit | 6275aad9e2e5307530be34d39c63ff35212c814f (patch) | |
tree | c19fcae6b476f65e0ff7625fb3695d82455728e9 /Dockerfile | |
parent | 01ebb6e304b243c335470f737cf7ad8b9d70bac9 (diff) | |
download | hugo-6275aad9e2e5307530be34d39c63ff35212c814f.tar.gz hugo-6275aad9e2e5307530be34d39c63ff35212c814f.zip |
Update Go and Alpine version in Dockerfile
Diffstat (limited to 'Dockerfile')
-rwxr-xr-x | Dockerfile | 4 |
1 files changed, 2 insertions, 2 deletions
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 |