Compare commits

...

2 Commits

Author SHA1 Message Date
sergey 05a45774f1 Merge pull request 'no test docker-file no uv' (#6) from dev into main
Reviewed-on: #6
2025-06-23 10:11:57 +00:00
s.mostryukov ab04a946cc no test docker-file no uv 2025-06-23 13:11:07 +03:00
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"]