Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
nagose/qw08
nagose
/
mc4b
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
mc4b
/
Dockerfile
nagose
Create Dockerfile
9ac7b0a
verified
about 1 month ago
raw
Copy download link
history
blame
contribute
delete
Safe
147 Bytes
FROM
python:
3.10
-slim
WORKDIR
/app
COPY
requirements.txt .
RUN
pip install --no-cache-dir -r requirements.txt
COPY
. .
CMD
[
"python"
,
"app.py"
]