blog/hugo.Dockerfile
d3vyce df1ff04c1b
Some checks failed
Build Blog Docker Image / build docker (push) Waiting to run
Build Hugo Docker Image / build docker (push) Has been cancelled
bump: blowfish/hugo version
2024-04-30 23:55: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}