Compare commits

..

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

1 changed files with 2 additions and 4 deletions

View File

@ -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/* RUN apt-get update && apt-get install -y --no-install-recommends git && rm -rf /var/lib/apt/lists/*
ADD . . ADD . .
RUN pip install --upgrade pip RUN pip install --upgrade pip
RUN pip install gitpython RUN pip install uv
RUN pip install netmiko
RUN pip install schedule
RUN uv sync --no-dev RUN uv sync --no-dev
WORKDIR /app WORKDIR /app
CMD ["python", "main.py"] CMD ["uv", "run", "main.py"]