Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
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
over 1 year 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"
]