You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
blog/Dockerfile

13 lines
292 B

FROM docker.io/golang:1.19 as build
RUN go install git.sr.ht/~sircmpwn/openring@latest
RUN go install --tags extended github.com/gohugoio/hugo@latest
COPY . /go/src/blog
WORKDIR /go/src/blog
RUN make public
FROM docker.io/nginx
COPY --from=build /go/src/blog/public /usr/share/nginx/html