blog/hugo.Dockerfile
d3vyce c3193e0adb
All checks were successful
Build Hugo Docker Image / build docker (push) Successful in 4m27s
Build Blog Docker Image / build docker (push) Successful in 1m11s
bump: blowfish/hugo version
2024-04-30 23:56:44 +02:00

13 lines
255 B
Docker

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@${HUGO_VERSION}