Upload 2 files
Browse files- Dockerfile +1 -1
- requirements.txt +2 -1
Dockerfile
CHANGED
|
@@ -13,7 +13,7 @@ RUN apt-get update && apt-get install -y \
|
|
| 13 |
COPY requirements.txt .
|
| 14 |
|
| 15 |
# Install Python dependencies
|
| 16 |
-
RUN
|
| 17 |
|
| 18 |
# Copy application code
|
| 19 |
COPY . .
|
|
|
|
| 13 |
COPY requirements.txt .
|
| 14 |
|
| 15 |
# Install Python dependencies
|
| 16 |
+
RUN pip3 install --no-cache-dir -r requirements.txt
|
| 17 |
|
| 18 |
# Copy application code
|
| 19 |
COPY . .
|
requirements.txt
CHANGED
|
@@ -2,7 +2,7 @@ torch>=2.0.0
|
|
| 2 |
torchvision>=0.15.0
|
| 3 |
timm>=1.0.0
|
| 4 |
open_clip_torch>=2.20.0
|
| 5 |
-
|
| 6 |
Pillow>=10.0.0
|
| 7 |
pandas>=2.0.0
|
| 8 |
numpy>=1.24.0
|
|
@@ -10,3 +10,4 @@ matplotlib>=3.7.0
|
|
| 10 |
seaborn>=0.13.0
|
| 11 |
scikit-learn>=1.3.0
|
| 12 |
tqdm>=4.65.0
|
|
|
|
|
|
| 2 |
torchvision>=0.15.0
|
| 3 |
timm>=1.0.0
|
| 4 |
open_clip_torch>=2.20.0
|
| 5 |
+
streamlit>=1.30.0
|
| 6 |
Pillow>=10.0.0
|
| 7 |
pandas>=2.0.0
|
| 8 |
numpy>=1.24.0
|
|
|
|
| 10 |
seaborn>=0.13.0
|
| 11 |
scikit-learn>=1.3.0
|
| 12 |
tqdm>=4.65.0
|
| 13 |
+
huggingface_hub>=0.19.0
|