Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Pro100Sata
/
chatgpt4
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
chatgpt4
/
Dockerfile
Yarik
Initial commit
de9ce4c
15 days ago
raw
Copy download link
history
blame
contribute
delete
Safe
147 Bytes
FROM
python:
3.11
-slim
WORKDIR
$HOME
/app
COPY
. .
RUN
pip install -r requirements.txt
VOLUME
/data
EXPOSE
7860
CMD
[
"python"
,
"-m"
,
"apis.chat_api"
]