Compare commits

...

2 Commits

Author SHA1 Message Date
sergey e0da95c3b7 Merge pull request 'test docker-file no uv' (#5) from dev into main
Reviewed-on: #5
2025-06-23 10:02:31 +00:00
s.mostryukov 1eccf2873b test docker-file no uv 2025-06-23 12:57:21 +03:00
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"]