xray-docs/Containerfile
Nikolai Rodionov 1fe0a9d815
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
Try rootless nginx
2025-02-15 15:02:03 +01:00

12 lines
303 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 nginxinc/nginx-unprivileged:1.27-alpine-perl
COPY --from=builder /src/site /usr/share/nginx/html