test docker-file no uv
This commit is contained in:
parent
2280196956
commit
1eccf2873b
|
@ -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/*
|
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 uv
|
RUN pip install gitpython
|
||||||
|
RUN pip install netmiko
|
||||||
|
RUN pip install schedule
|
||||||
RUN uv sync --no-dev
|
RUN uv sync --no-dev
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
CMD ["uv", "run", "main.py"]
|
CMD ["python", "main.py"]
|
Loading…
Reference in New Issue