proKBD commited on
Commit
2959a05
·
verified ·
1 Parent(s): 8001d97

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +33 -2
Dockerfile CHANGED
@@ -1,4 +1,15 @@
1
- FROM python:3.9-slim
 
 
 
 
 
 
 
 
 
 
 
2
 
3
  WORKDIR /app
4
 
@@ -30,4 +41,24 @@ RUN python -c "import nltk; nltk.download('punkt'); nltk.download('averaged_perc
30
  EXPOSE 8501
31
 
32
  # Command to run the application
33
- CMD ["streamlit", "run", "app.py", "--server.address", "0.0.0.0"]
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Core dependencies
2
+ streamlit==1.31.1
3
+ fastapi==0.109.2
4
+ uvicorn==0.27.1
5
+ python-multipart==0.0.6
6
+ python-dotenv==1.0.1
7
+ aiofiles==23.2.1
8
+
9
+ # Data processing and analysis
10
+ pandas==2.2.0
11
+ numpy==1.26.3
12
+ scikit-learn==1.4.0FROM python:3.9-slim
13
 
14
  WORKDIR /app
15
 
 
41
  EXPOSE 8501
42
 
43
  # Command to run the application
44
+ CMD ["streamlit", "run", "app.py", "--server.address", "0.0.0.0"]
45
+ textblob==0.17.1
46
+ vaderSentiment==3.3.2
47
+
48
+ # Web scraping and parsing
49
+ beautifulsoup4==4.12.2
50
+ requests==2.31.0
51
+ lxml==4.9.3
52
+
53
+ # NLP and ML
54
+ nltk==3.8.1
55
+ transformers==4.37.2
56
+ torch==2.2.0
57
+ spacy==3.7.2
58
+
59
+ # Visualization and audio
60
+ plotly==5.18.0
61
+ gTTS==2.5.0
62
+
63
+ # Translation
64
+ googletrans-py==4.0.0