我的 DockerFile 是这样的
FROM --platform=amd64 python:3
WORKDIR /app
ARG POETRY_VERSION=1.3.0
RUN apt-get update && \
curl -sL https://deb.nodesource.com/setup_16.x | bash - && \
apt-get install -y nodejs && \
pip3 install --no-cache-dir poetry
COPY package*.json ./
COPY pyproject.toml ./
# Install dependencies
ENV PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=true
RUN poetry install && npm install
COPY . .
# poetry run python3 bin/openai-auth.py mtrucc@gmail.com Mt.r!openai132
# CMD ["poetry", "run", "python3", "bin/openai-auth.py", "mtrucc@gmail.com", "Mt.r!openai132"]
CMD ["node", "testChat.mjs"]
EXPOSE 3001
在 Mac m1 上运行的时候,报错
'During handling of the above exception, another exception occurred:\n' +
'\n' +
'Traceback (most recent call last):\n' +
' File "/app/bin/openai-auth.py", line 47, in <module>\n' +
' raise RuntimeError("Could import revChatGPT. Please install it first. You can run `poetry install` to install it.")\n' +
'RuntimeError: Could import revChatGPT. Please install it first. You can run `poetry install` to install it.',
failed: true,
timedOut: false,
isCanceled: false,
killed: false
按照关键词理解,是说没有安装依赖,但是我在 DockerFile 里面已经安装了依赖
然后我往上翻,发现了一个有意思的报错
e>\n' +
" library = ctypes.cdll.LoadLibrary(f'{root_dir}/dependencies/tls-client{file_ext}')\n" +
' ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n' +
' File "/usr/local/lib/python3.11/ctypes/__init__.py", line 454, in LoadLibrary\n' +
' return self._dlltype(name)\n' +
' ^^^^^^^^^^^^^^^^^^^\n' +
' File "/usr/local/lib/python3.11/ctypes/__init__.py", line 376, in __init__\n' +
' self._handle = _dlopen(self._name, mode)\n' +
' ^^^^^^^^^^^^^^^^^^^^^^^^^\n' +
'OSError: /root/.cache/pypoetry/virtualenvs/chatbot-twitter-9TtSrW0h-py3.11/lib/python3.11/site-packages/tls_client/dependencies/tls-client-amd64.so: cannot open shared object file: No such file or directory\n' +
这个报错是说,我在 Mac m1 上运行的时候,找不到 tls-client-amd64.so
这个文件
然后我在 DockerFile 里面加了一行
FROM --platform=amd64 python:3
这段代码的意思是,我要在 Mac m1 上运行的时候,使用 amd64 的镜像,
然后就可以运行了
后记
这个报错还是雷罗同学帮我找到的,他跑我这个 DockerFile 的时候,一点问题都没有,我才意识到可能是 Mac m1 的问题