Upload folder using huggingface_hub
Browse files- Dockerfile +2 -1
- requirements.txt +3 -3
Dockerfile
CHANGED
@@ -1,5 +1,6 @@
|
|
1 |
# Use a minimal base image with Python 3.9 installed
|
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.9 installed
|
2 |
+
FROM python:3.9-slim
|
3 |
+
# FROM python:3.13-slim
|
4 |
|
5 |
# Set the working directory inside the container to /app
|
6 |
WORKDIR /app
|
requirements.txt
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
-
pandas
|
2 |
-
requests
|
3 |
-
streamlit
|
|
|
1 |
+
pandas==2.2.2
|
2 |
+
requests==2.28.1
|
3 |
+
streamlit==1.43.2
|