diff options
author | michalbiesek <[email protected]> | 2023-08-23 18:06:52 +0200 |
---|---|---|
committer | GitHub <[email protected]> | 2023-08-23 18:06:52 +0200 |
commit | 8a08f91d5b2ce0169569f8b39be914c4fe0c1164 (patch) | |
tree | ef7f32f5b256dcaacd6acb3638eb3fc896f5dbd4 /Dockerfile | |
parent | dcf425c846dcd6fbb0c05e87342077ab870eb7e1 (diff) | |
download | hugo-8a08f91d5b2ce0169569f8b39be914c4fe0c1164.tar.gz hugo-8a08f91d5b2ce0169569f8b39be914c4fe0c1164.zip |
dockerfile: Update Docker images
- `golang:1.21-alpine`
- `alpine:3.18`
Diffstat (limited to 'Dockerfile')
-rwxr-xr-x | Dockerfile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Dockerfile b/Dockerfile index 7d0980035..cc41d0ca1 100755 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ # Twitter: https://twitter.com/gohugoio # Website: https://gohugo.io/ -FROM golang:1.19-alpine AS build +FROM golang:1.21-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.16 +FROM alpine:3.18 COPY --from=build /go/bin/hugo /usr/bin/hugo |