Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
Hansimov/bing-chat-api
thunder-lord
/
gpt-4
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
7832245
gpt-4
/
Dockerfile
Hansimov
:gem: [Feature] Dockerfile: Minimal working instance
7832245
over 1 year ago
raw
Copy download link
history
blame
Safe
167 Bytes
FROM
python:
3.11
-slim
WORKDIR
/app
COPY
requirements.txt .
RUN
pip install -r requirements.txt
COPY
. .
VOLUME
/data
EXPOSE
22222
CMD
[
"python"
,
"-m"
,
"apis.chat_api"
]