QChatGPT/Dockerfile

15 lines
269 B
Docker
Raw Normal View History

2023-09-12 18:21:03 +08:00
FROM python:3.10.13-alpine3.18
2023-03-24 19:58:27 +08:00
WORKDIR /QChatGPT
COPY . /QChatGPT/
2023-09-12 18:21:03 +08:00
RUN ls
RUN pip install -r requirements.txt && \
pip install -U websockets==10.0 && \
pip install -U httpcore httpx openai
2023-09-12 18:21:03 +08:00
# 生成配置文件
RUN python main.py
2023-03-24 19:58:27 +08:00
2023-09-12 18:21:03 +08:00
CMD [ "python", "main.py" ]