Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Website
Tasks
HuggingChat
Collections
Languages
Organizations
Community
Blog
Posts
Daily Papers
Learn
Discord
Forum
GitHub
Solutions
Team & Enterprise
Hugging Face PRO
Enterprise Support
Inference Providers
Inference Endpoints
Storage Buckets
Log In
Sign Up
Spaces:
Gagan0141
/
flask-py
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
flask-py
/
Dockerfile
Gagan0141
Upload 7 files
090b756
verified
9 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
188 Bytes
# Use Python base image
FROM
python:
3.10
-slim
WORKDIR
/app
COPY
. /app
RUN
pip install --no-cache-dir -r requirements.txt
EXPOSE
7860
CMD
[
"gunicorn"
,
"-b"
,
"0.0.0.0:7860"
,
"app:app"
]