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