]> git.maquefel.me Git - brevno-suite/hugo/commitdiff
dockerfile: Update Docker images
authormichalbiesek <michalbiesek@gmail.com>
Wed, 23 Aug 2023 16:06:52 +0000 (18:06 +0200)
committerGitHub <noreply@github.com>
Wed, 23 Aug 2023 16:06:52 +0000 (18:06 +0200)
- `golang:1.21-alpine`
- `alpine:3.18`

Dockerfile

index 7d09800358b2d09b561d681adcc48d9a85664efc..cc41d0ca1759ed11e5dead51bddc50c23a79bdc8 100755 (executable)
@@ -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