Merge pull request 'test docker-file no uv' (#5) from dev into main

Reviewed-on: #5
This commit is contained in:
sergey 2025-06-23 10:02:31 +00:00
commit e0da95c3b7
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"]