QChatGPT/Dockerfile

15 lines
297 B
Docker
Raw Normal View History

FROM python:3.10.13-bullseye
2023-03-24 19:58:27 +08:00
WORKDIR /QChatGPT
COPY . /QChatGPT/
2023-09-12 18:21:03 +08:00
RUN ls
RUN python -m pip install -r requirements.txt && \
python -m pip install -U websockets==10.0 && \
python -m 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" ]