docs/Dockerfile
Astra Logical 136be0ad30
Some checks are pending
Build and Publish Docs / build-and-push (push) Waiting to run
Remove conventions
2026-07-28 16:56:40 -04:00

11 lines
219 B
Docker

# Build Stage
FROM python:3.11-alpine AS builder
WORKDIR /app
COPY . .
RUN pip install -r requirements.txt
RUN mkdocs build
# Serve Stage
FROM nginx:alpine
COPY --from=builder /app/site /usr/share/nginx/html
EXPOSE 80