From ab04a946cc2affade74ae934b15e277e640ec116 Mon Sep 17 00:00:00 2001 From: "s.mostryukov" Date: Mon, 23 Jun 2025 13:11:07 +0300 Subject: [PATCH] no test docker-file no uv --- docker/Dockerfile | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index 53be5c1..64be0e2 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -2,9 +2,7 @@ FROM python:3.13-slim RUN apt-get update && apt-get install -y --no-install-recommends git && rm -rf /var/lib/apt/lists/* ADD . . RUN pip install --upgrade pip -RUN pip install gitpython -RUN pip install netmiko -RUN pip install schedule +RUN pip install uv RUN uv sync --no-dev WORKDIR /app -CMD ["python", "main.py"] \ No newline at end of file +CMD ["uv", "run", "main.py"] \ No newline at end of file