13 lines
229 B
Docker
13 lines
229 B
Docker
|
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/
|