changed dockerfile and requirements.txt

This commit is contained in:
2026-05-11 11:38:40 +02:00
parent 5d3c22fd1c
commit c0bc9588f5
3 changed files with 14 additions and 3 deletions
+4 -2
View File
@@ -6,11 +6,13 @@ RUN apt-get update && apt-get install -y \
bash \
&& rm -rf /var/lib/apt/lists/*
COPY . .
RUN pip install torch torchvision --index-url https://download.pytorch.org/whl/cpu
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
RUN pip install torch torchvision --index-url https://download.pytorch.org/whl/cpu
Copy . .
RUN chmod +x start_server.sh
+4 -1
View File
@@ -3,4 +3,7 @@ networkx==3.6.1
numpy==2.3.4
tqdm==4.67.3
uvicorn==0.46.0
python-multipart==0.0.27
python-multipart==0.0.27
opencv-python==4.13.0.92
pillow==12.2.0
pycocotools==2.0.11