Upload folder using huggingface_hub
Browse files- Dockerfile +2 -2
- requirements.txt +1 -1
Dockerfile
CHANGED
|
@@ -1,5 +1,5 @@
|
|
| 1 |
-
# Use a minimal base image with Python 3.
|
| 2 |
-
FROM python:3.
|
| 3 |
|
| 4 |
# Set the working directory inside the container to /app
|
| 5 |
WORKDIR /app
|
|
|
|
| 1 |
+
# Use a minimal base image with Python 3.10 installed
|
| 2 |
+
FROM python:3.10-slim
|
| 3 |
|
| 4 |
# Set the working directory inside the container to /app
|
| 5 |
WORKDIR /app
|
requirements.txt
CHANGED
|
@@ -1,6 +1,6 @@
|
|
| 1 |
# Data manipulation
|
| 2 |
pandas==2.2.2
|
| 3 |
-
numpy==2.
|
| 4 |
|
| 5 |
# Machine learning (model inference only)
|
| 6 |
scikit-learn==1.6.0
|
|
|
|
| 1 |
# Data manipulation
|
| 2 |
pandas==2.2.2
|
| 3 |
+
numpy==2.0.2
|
| 4 |
|
| 5 |
# Machine learning (model inference only)
|
| 6 |
scikit-learn==1.6.0
|