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:
replicantzk
/
chat
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
chat
/
Dockerfile
Marko Vukovic
Initial public release
afdd51b
almost 2 years ago
raw
Copy download link
history
blame
contribute
delete
Safe
159 Bytes
FROM
python:
3.8
-slim
WORKDIR
/usr/src/app
COPY
. .
RUN
pip install -r requirements.txt
EXPOSE
7860
ENV
GRADIO_SERVER_NAME=
"0.0.0.0"
CMD
[
"python"
,
"app.py"
]