Kashish commited on
Commit
5668592
·
1 Parent(s): 0192387

clearing pytorch load

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -0
Dockerfile CHANGED
@@ -3,6 +3,9 @@ FROM python:3.13-slim
3
  WORKDIR /app
4
 
5
  COPY requirements.txt ./
 
 
 
6
  RUN pip install --no-cache-dir -r requirements.txt
7
 
8
  COPY . .
 
3
  WORKDIR /app
4
 
5
  COPY requirements.txt ./
6
+
7
+ RUN pip install --no-cache-dir torch --index-url https://download.pytorch.org/whl/cpu
8
+
9
  RUN pip install --no-cache-dir -r requirements.txt
10
 
11
  COPY . .