Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
vansh9878
/
Dataset
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
Dataset
/
Dockerfile
vansh9878
readme fixed
175f1a6
1 day ago
raw
Copy download link
history
blame
contribute
delete
Safe
184 Bytes
FROM
python:
3.10
-slim
WORKDIR
/app
COPY
requirements.txt .
RUN
pip install -r requirements.txt
COPY
. .
ENV
FLASK_APP=app.py
CMD
[
"flask"
,
"run"
,
"--host=0.0.0.0"
,
"--port=7860"
]