books/Dockerfile

18 lines
279 B
Text
Raw Normal View History

2026-02-07 11:04:04 +01:00
# Build stage - use pre-built mdbook
FROM peaceiris/mdbook:v0.4.40 AS builder
WORKDIR /book
COPY book.toml .
COPY src/ src/
RUN mdbook build
# Runtime stage
FROM nginx:alpine
COPY --from=builder /book/book /usr/share/nginx/html
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]