siwa-game.fr/Dockerfile

8 lines
133 B
Text
Raw Normal View History

2026-05-07 16:03:20 +02:00
FROM hugomods/hugo:latest AS builder
2026-05-07 17:03:42 +02:00
COPY ./src /src
RUN hugo build
2026-05-07 16:03:20 +02:00
2026-05-07 17:03:42 +02:00
FROM hugomods/hugo:nginx
2026-05-07 16:03:20 +02:00
2026-05-07 17:03:42 +02:00
COPY --from=builder /src/public /site