add hugo build image
Some checks failed
Build Hugo Docker Image / build docker (push) Failing after 15s

This commit is contained in:
2024-02-11 11:28:25 +01:00
parent 52e3025a1c
commit 61d2cd4e78
4 changed files with 48 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