Add initial Docker configuration and documentation setup

This commit is contained in:
Илья Глазунов
2025-12-05 13:21:33 +03:00
parent 1f25033d2d
commit 94e699549d
4 changed files with 69 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
FROM python:3.13-slim
WORKDIR /app
RUN pip install --no-cache-dir https://git.pyserve.org/Shifty/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"]