docs/Dockerfile
Astra Logical 90314aa8ec
Some checks failed
Build and Publish Docs / build-and-push (push) Has been cancelled
Mkdocs setup
2026-07-26 19:39:27 -04:00

11 lines
215 B
Docker

# 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