minimal-setups/Dockerfile

19 lines
243 B
Docker
Raw Normal View History

2025-01-11 18:46:41 +01:00
FROM hugomods/hugo:std-base-non-root AS builder
2025-01-12 00:07:27 +01:00
ARG BASE_URL ""
2025-01-11 18:46:41 +01:00
COPY content/ /src
2025-01-12 00:07:27 +01:00
RUN if [ "$BASE_URL" = ""]; then hugo; else hugo -b $BASE_URL; fi
2025-01-11 18:46:41 +01:00
2025-01-12 00:00:00 +01:00
FROM nginx:alpine
COPY --from=builder /src/public /usr/share/nginx/html
EXPOSE 80