2025-01-15 15:05:25 +00:00
|
|
|
FROM python:3.13 AS builder
|
|
|
|
RUN apt-get update -y
|
|
|
|
RUN apt-get install -y pipx
|
|
|
|
RUN pip install poetry
|
|
|
|
WORKDIR /src
|
|
|
|
COPY . .
|
|
|
|
RUN python -m poetry install --no-root
|
|
|
|
RUN python -m poetry run mkdocs build
|
|
|
|
|
2025-02-15 15:48:01 +00:00
|
|
|
FROM nginx
|
2025-01-15 15:05:25 +00:00
|
|
|
COPY --from=builder /src/site /usr/share/nginx/html
|