This commit is contained in:
Nyako
2026-06-12 16:46:37 +03:00
parent 1db8e46064
commit ed39d2b56a
5 changed files with 44 additions and 7 deletions
+8
View File
@@ -0,0 +1,8 @@
FROM python:3.13-slim
WORKDIR /app
RUN pip install uv
COPY pyproject.toml uv.lock* ./
RUN uv sync --frozen
COPY . .
ENV PYTHONUNBUFFERED=1
CMD ["uv", "run", "python", "run.py"]