gpt4 book ai didi

python - 在 alpine docker 镜像中使用 asyncpg python 模块

转载 作者:行者123 更新时间:2023-12-02 20:41:48 26 4
gpt4 key购买 nike

我正在尝试基于 python:3-8.alpine 构建图像,使用python模块asyncpg .

这是我的 Dockerfile 的一部分:

FROM python:3.8-alpine

RUN apk add gcc
RUN apk add python3-dev

RUN pip3 install asyncpg

我添加了 gccpython3-dev因为我认为我需要他们能够构建 asyncpg根据文档: https://magicstack.github.io/asyncpg/current/installation.html (但我不确定,我想我应该能够在不构建这个模块的情况下安装)

但是在构建图像时出现以下错误:
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -DTHREAD_STACK_SIZE=0x100000 -fPIC -I/usr/local/include/python3.8 -c asyncpg/pgproto/pgproto.c -o build/temp.linux-x86_64-3.8/asyncpg/pgproto/pgproto.o -O2 -fsigned-char -Wall -Wsign-compare -Wconversion
In file included from asyncpg/pgproto/pgproto.c:29:
/usr/local/include/python3.8/Python.h:11:10: fatal error: limits.h: No such file or directory
11 | #include <limits.h>
| ^~~~~~~~~~
compilation terminated.
error: command 'gcc' failed with exit status 1

如何解决此错误并安装 asyncpg ?

谢谢

最佳答案

您必须安装构建工具而不仅仅是 gcc。您也可以删除 RUN apk add python3-dev步。由于您使用 python 作为基础图像。

FROM python:3.8-alpine

RUN apk add --no-cache build-base

RUN pip3 install asyncpg

构建标准输出
Step 3/3 : RUN pip3 install asyncpg
---> Running in e109c84feec3
Collecting asyncpg
Downloading asyncpg-0.20.1.tar.gz (734 kB)
Building wheels for collected packages: asyncpg
Building wheel for asyncpg (setup.py): started
Building wheel for asyncpg (setup.py): finished with status 'done'
Created wheel for asyncpg: filename=asyncpg-0.20.1-cp38-cp38-linux_x86_64.whl size=1337371 sha256=5a0dcfc8c327eb4068814a9bf0a1d9beee1b9c440c1100efcede8ef63b1dac09
Stored in directory: /root/.cache/pip/wheels/22/c9/61/991ebd5df043025e222695b7c4bc84e527bf3f0239073f0ea2
Successfully built asyncpg
Installing collected packages: asyncpg
Successfully installed asyncpg-0.20.1
Removing intermediate container e109c84feec3
---> 21dacd97e784
Successfully built 21dacd97e784

关于python - 在 alpine docker 镜像中使用 asyncpg python 模块,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62343455/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com