Compare commits
2 Commits
e0da95c3b7
...
05a45774f1
Author | SHA1 | Date |
---|---|---|
|
05a45774f1 | |
|
ab04a946cc |
|
@ -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"]
|
Loading…
Reference in New Issue