mirror of
https://github.com/RockChinQ/QChatGPT.git
synced 2024-11-15 19:22:24 +08:00
14 lines
218 B
Docker
14 lines
218 B
Docker
FROM python:3.10.13-alpine3.18
|
|
WORKDIR /QChatGPT
|
|
|
|
COPY . /QChatGPT/
|
|
|
|
RUN ls
|
|
|
|
RUN pip install -r requirements.txt
|
|
RUN pip install -U websockets==10.0
|
|
|
|
# 生成配置文件
|
|
RUN python main.py
|
|
|
|
CMD [ "python", "main.py" ] |