Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
Pro100Sata
/
xche_ai
like
0
Sleeping
App
Files
Files
Community
461166a
xche_ai
/
Dockerfile
Yarik
Add application file
083d21c
6 months ago
raw
Copy download link
history
blame
Safe
148 Bytes
FROM
python:
3.11
-slim
WORKDIR
$HOME
/app
COPY
. .
RUN
pip install -r requirements.txt
VOLUME
/data
EXPOSE
23333
CMD
[
"python"
,
"-m"
,
"apis.chat_api"
]