bump: blowfish/hugo version
All checks were successful
Build Hugo Docker Image / build docker (push) Successful in 4m27s
Build Blog Docker Image / build docker (push) Successful in 1m11s

This commit is contained in:
2024-04-30 23:33:30 +02:00
parent 2f41aadcbf
commit c3193e0adb
4 changed files with 11 additions and 3 deletions

View File

@ -1,10 +1,12 @@
FROM golang:1.22-alpine AS build
ARG HUGO_VERSION
ARG CGO=1
ENV CGO_ENABLED=${CGO}
ENV GOOS=linux
ENV GO111MODULE=on
RUN apk update && \
apk add --no-cache gcc musl-dev g++ git
RUN go install -tags extended github.com/gohugoio/hugo@v0.124.1
RUN go install -tags extended github.com/gohugoio/hugo@${HUGO_VERSION}