Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
anu151105
/
Sample
like
1
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
Sample
/
Dockerfile
anu151105
Upload 6 files
9b047f5
verified
5 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
150 Bytes
FROM
python:
3.9
WORKDIR
/app
COPY
requirements.txt .
RUN
pip install --no-cache-dir -r requirements.txt
COPY
. .
CMD
[
"python"
,
"app.py"
]