所以。我正在尝试让我的 Dockerfile 运行。
Dockerfile 很复杂,而且对 Python 来说有些错误。不过,重要的部分是它在我将 XMLSec 添加到依赖项之前就可以工作了。(通过 onelogin [https://github.com/onelogin/python-saml] 包)
在我们的非 Dockerized 系统上,我们运行:
apt install -y libxml2-dev libxmlsec1-dev libxmlsec1-openssl pkg-config
并安装依赖项。然而,我的容器化尝试遇到了这个问题:
Running setup.py install for xmlsec: started
Running setup.py install for xmlsec: finished with status 'error'
Complete output from command /usr/local/bin/python3.6 -u -c "import setuptools, tokenize;__file__='/tmp/pip-install-wd6h548m/xmlsec/setup.py';f=getattr(tokenize, 'open', open)(__file__);code=f.read().replace('\r\n', '\n');f.close();exec(compile(code, __file__, 'exec'))" install --record /tmp/pip-record-ufxw9hor/install-record.txt --single-version-externally-managed --compile:
running install
running build
running build_py
package init file 'src/xmlsec/__init__.py' not found (or not a regular file)
creating build
creating build/lib.linux-x86_64-3.6
creating build/lib.linux-x86_64-3.6/xmlsec
copying src/xmlsec/py.typed -> build/lib.linux-x86_64-3.6/xmlsec
copying src/xmlsec/constants.pyi -> build/lib.linux-x86_64-3.6/xmlsec
copying src/xmlsec/template.pyi -> build/lib.linux-x86_64-3.6/xmlsec
copying src/xmlsec/__init__.pyi -> build/lib.linux-x86_64-3.6/xmlsec
copying src/xmlsec/tree.pyi -> build/lib.linux-x86_64-3.6/xmlsec
running build_ext
error: Unable to invoke pkg-config.
解决方案似乎是将 XMLSec 库用作已编译的 Wheel。(根据我在 XMLSec github 中阅读的内容)我找不到任何关于如何通过 Dockerfile 将此编译轮添加到容器内的可执行位置的文档。
我对此进行了大量研究,但找不到示例代码或确切答案。我可能很明显,但我缺少核心知识。