xray-docs/Containerfile
Devops Bot 4169b5adeb
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
Update nginx Docker tag to v1.27.4
2025-02-06 01:02:45 +00:00

12 lines
271 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:1.27.4
COPY --from=builder /src/site /usr/share/nginx/html