Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
dkedar7
/
fastdash
like
0
Model card
Files
Files and versions
xet
Community
main
fastdash
/
Dockerfile
dkedar7
Upload folder using huggingface_hub
6b5c900
verified
6 months ago
raw
Copy download link
history
blame
contribute
delete
161 Bytes
FROM
python:
3.13
-slim
WORKDIR
/app
COPY
requirements.txt .
RUN
pip install --no-cache-dir -r requirements.txt
COPY
. .
EXPOSE
8080
CMD
[
"python"
,
"app.py"
]