17 lines
168 B
Docker
Raw Normal View History

2025-01-11 18:46:41 +01:00
FROM hugomods/hugo:std-base-non-root AS builder
COPY content/ /src
RUN hugo
2025-01-12 00:00:00 +01:00
FROM nginx:alpine
COPY --from=builder /src/public /usr/share/nginx/html
EXPOSE 80