|
FROM golang:1.21 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/
|
|
COPY ./nginx.conf /etc/nginx/conf.d/default.conf |