FROM hugomods/hugo:std-base-non-root AS builder
COPY content/ /src
RUN hugo
FROM nginx:alpine
COPY --from=builder /src/public /usr/share/nginx/html
EXPOSE 80