sksameermujahid commited on
Commit
9340a24
·
verified ·
1 Parent(s): 25bf584

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +21 -3
Dockerfile CHANGED
@@ -30,9 +30,27 @@ COPY requirements.txt .
30
 
31
  # Install Python dependencies
32
  RUN pip install --no-cache-dir --upgrade pip && \
33
- pip install --no-cache-dir numpy==1.24.3 && \
34
- pip install --no-cache-dir torch==1.13.1 && \
35
- pip install --no-cache-dir -r requirements.txt
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
36
 
37
  # Copy the rest of the application
38
  COPY . .
 
30
 
31
  # Install Python dependencies
32
  RUN pip install --no-cache-dir --upgrade pip && \
33
+ pip install --no-cache-dir \
34
+ numpy==1.24.3 \
35
+ torch==1.13.1 \
36
+ flask==3.1.0 \
37
+ flask-cors==5.0.1 \
38
+ transformers==4.30.2 \
39
+ sentence-transformers==2.2.2 \
40
+ huggingface-hub==0.16.4 \
41
+ accelerate==0.20.3 \
42
+ faiss-cpu==1.7.4 \
43
+ pandas==1.5.3 \
44
+ geopy==2.3.0 \
45
+ geocoder==1.38.1 \
46
+ cloudinary==1.33.0 \
47
+ pydub==0.25.1 \
48
+ SpeechRecognition==3.10.0 \
49
+ webrtcvad==2.0.10 \
50
+ happytransformer==2.4.1 \
51
+ Werkzeug==2.0.3 \
52
+ pyngrok==7.0.0 \
53
+ safetensors==0.3.1
54
 
55
  # Copy the rest of the application
56
  COPY . .