add hugo build image

This commit is contained in:
2024-02-11 11:28:25 +01:00
parent 6e274b75ea
commit af2ffa9900
4 changed files with 49 additions and 1 deletions

10
hugo.Dockerfile Normal file
View File

@ -0,0 +1,10 @@
FROM golang:1.22-alpine AS build
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.122.0