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

12 lines
271 B

FROM docker.io/golang:alpine as build
COPY . /go/src/blog
WORKDIR /go/src/blog
RUN apk add hugo make git --no-cache \
&& go install git.sr.ht/~sircmpwn/openring@latest \
&& make public
FROM docker.io/nginx
COPY --from=build /go/src/blog/public /usr/share/nginx/html