docs.pyserve.org/Dockerfile
Илья Глазунов b481d17f2c
All checks were successful
Deploy to Production / deploy (push) Successful in 4s
Update pip install URL in Dockerfile to use aegis repository
2025-12-12 01:50:52 +03:00

8 lines
282 B
Docker

FROM python:3.13-slim
WORKDIR /app
RUN pip install --no-cache-dir https://git.pyserve.org/aegis/pyserveX/releases/download/v0.9.10/pyserve-0.9.10-py3-none-any.whl
COPY . /app/docs/
COPY config.docs.yaml /app/config.docs.yaml
EXPOSE 80
CMD ["pyserve", "-c", "/app/config.docs.yaml"]