Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Asqwehvg
/
choice
like
0
Build error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
choice
/
Dockerfile
Asqwehvg
Create Dockerfile
163a12a
verified
9 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
165 Bytes
# Dockerfile
FROM
python:
3.9
-slim
WORKDIR
/app
COPY
requirements.txt .
RUN
pip install -r requirements.txt
COPY
. .
CMD
[
"python"
,
"app.py"
]