Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
rickqaq
/
223
like
0
Sleeping
App
Files
Files
Community
main
223
/
Dockerfile
kqe
1
338b582
2 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
214 Bytes
FROM
python:
3.11
-slim
WORKDIR
$HOME
/app
COPY
requirements.txt
$HOME
/app
RUN
mkdir
/.cache &&
chmod
777 /.cache
RUN
pip install -r requirements.txt
COPY
.
$HOME
/app
EXPOSE
23333
CMD
[
"python"
,
"-m"
,
"apis.chat_api"
]