Compare commits

..

No commits in common. "05a45774f18df41f738bd10ea697765144a98ae3" and "e0da95c3b7bf5952f88799745a85c321ffda8d63" have entirely different histories.

1 changed files with 4 additions and 2 deletions

View File

@ -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"]
CMD ["python", "main.py"]