namesny-com/Dockerfile

13 lines
229 B
Docker
Raw Normal View History

2023-02-13 19:05:21 +00:00
FROM golang:1.20 as build
WORKDIR /app
RUN go install -tags extended github.com/gohugoio/hugo@latest
COPY . /app
RUN hugo mod get -u && \
hugo
FROM nginx:stable-alpine
COPY --from=build /app/public /usr/share/nginx/html/