xray-docs/Containerfile
Nikolai Rodionov e2633f55b8
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
Try rootless nginx
2025-02-15 16:48:01 +01:00

12 lines
264 B
Docker

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
FROM nginx
COPY --from=builder /src/site /usr/share/nginx/html