Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
mike23415
/
Data-analytics
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
2b74b13
Data-analytics
/
Dockerfile
mike23415
Create Dockerfile
3eb14e0
verified
about 2 months ago
raw
Copy download link
history
blame
Safe
137 Bytes
FROM
python:
3.10
-slim
WORKDIR
/app
COPY
. /app
RUN
pip install --no-cache-dir -r requirements.txt
EXPOSE
7860
CMD
[
"python"
,
"app.py"
]