Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
rickkkz
/
223
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
223
/
Dockerfile
kqe
1
338b582
6 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"
]