From ec6c041bcfb928ec52e82a56f140676fae099164 Mon Sep 17 00:00:00 2001 From: RockChinQ <1010553892@qq.com> Date: Sun, 12 Nov 2023 14:42:07 +0800 Subject: [PATCH] =?UTF-8?q?ci(Dockerfile):=20=E4=BF=AE=E5=A4=8D=E4=BE=9D?= =?UTF-8?q?=E8=B5=96=E5=AE=89=E8=A3=85=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index d921b93..d977b91 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,13 +1,13 @@ -FROM python:3.10.13-alpine3.18 +FROM python:3.10.13-bullseye WORKDIR /QChatGPT COPY . /QChatGPT/ RUN ls -RUN pip install -r requirements.txt && \ - pip install -U websockets==10.0 && \ - pip install -U httpcore httpx openai +RUN python -m pip install -r requirements.txt && \ + python -m pip install -U websockets==10.0 && \ + python -m pip install -U httpcore httpx openai # 生成配置文件 RUN python main.py