This commit is contained in:
Dmitry
2026-07-04 10:29:16 +03:00
parent 22bc76587f
commit 793716f699
11 changed files with 720 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
FROM python:3.14-slim
RUN apt-get update \
&& apt-get install -y --no-install-recommends git openssh-client \
&& rm -rf /var/lib/apt/lists/*
WORKDIR /app
COPY pyproject.toml uv.lock ./
RUN pip install uv \
&& uv sync --frozen --no-dev
COPY . .
CMD ["uv", "run", "python", "main.py"]