From 1eccf2873b6cd7123cc17a145111a396d5999315 Mon Sep 17 00:00:00 2001 From: "s.mostryukov" Date: Mon, 23 Jun 2025 12:57:21 +0300 Subject: [PATCH] test docker-file no uv --- docker/Dockerfile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index 64be0e2..53be5c1 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -2,7 +2,9 @@ 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 uv +RUN pip install gitpython +RUN pip install netmiko +RUN pip install schedule RUN uv sync --no-dev WORKDIR /app -CMD ["uv", "run", "main.py"] \ No newline at end of file +CMD ["python", "main.py"] \ No newline at end of file