blog/hugo.Dockerfile
d3vyce e545f5d3b9
Some checks failed
Build Hugo Docker Image / build docker (push) Failing after 21s
Build Blog Docker Image / build docker (push) Has been cancelled
bump: blowfish/hugo version
2024-04-30 23:54:34 +02:00

13 lines
290 B
Docker

FROM golang:1.22-alpine AS build
ARG HUGO_VERSION="v0.125.4"
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 && echo ${HUGO_VERSION}
RUN go install -tags extended github.com/gohugoio/hugo@${HUGO_VERSION}