Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
iq7se2
/
web2
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
web2
/
Dockerfile
iq7se2
Upload 4 files
698b416
verified
7 days ago
raw
Copy download link
history
blame
contribute
delete
Safe
144 Bytes
FROM
python:
3.11
-slim
WORKDIR
/app
COPY
requirements.txt .
RUN
pip install --no-cache-dir -r requirements.txt
COPY
. .
CMD
[
"python"
,
"app.py"
]