docs/Dockerfile

12 lines
215 B
Text
Raw Normal View History

2026-07-26 19:39:27 -04:00
# Build Stage
FROM python:3.11-alpine AS builder
RUN pip install mkdocs-material
WORKDIR /app
COPY . .
RUN mkdocs build
# Serve Stage
FROM nginx:alpine
COPY --from=builder /app/site /usr/share/nginx/html
EXPOSE 80