Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
KASHH-4
/
Copy
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
Copy
/
Dockerfile
HusainHG
Upload 8 files
32bd536
verified
4 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
200 Bytes
FROM
python:
3.10
-slim
WORKDIR
/app
COPY
requirements.txt .
RUN
pip install --no-cache-dir -r requirements.txt
COPY
app.py .
COPY
static ./static
EXPOSE
7860
CMD
[
"python"
,
"app.py"
]