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