no test docker-file no uv

This commit is contained in:
s.mostryukov 2025-06-23 13:11:07 +03:00
parent 1eccf2873b
commit ab04a946cc
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"]