diff --git a/Dockerfile b/Dockerfile index d921b93e..d977b91a 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