Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
imenayadi
/
Smart-inbox
like
1
Sleeping
App
Files
Files
Community
1
0cb6039
Smart-inbox
/
Dockerfile
imenayadi
Add Dockerfile
2675314
6 months ago
raw
Copy download link
history
blame
Safe
153 Bytes
FROM
python:
3.10
-slim
WORKDIR
/app
COPY
. /app
RUN
pip install -U pip setuptools wheel
RUN
pip install -r requirements.txt
CMD
[
"python"
,
"app.py"
]