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