Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
detoxioai
/
demo-chat-gpt
like
2
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
85beb62
demo-chat-gpt
/
Dockerfile
jchauhan
Initial Commit
6f58cbf
5 months ago
raw
Copy download link
history
blame
Safe
186 Bytes
FROM
python:
3.10
.
13
WORKDIR
/app
COPY
requirements.txt requirements.txt
RUN
pip install -r requirements.txt
COPY
. .
ENV
GR_SERVER_NAME=
0.0
.
0.0
EXPOSE
7860
CMD
[
"python"
,
"app.py"
]