我正在尝试创建一个安装了azure-cli的Alpine docker图像。
我的泊坞窗文件如下:
FROM alpine:3.4
RUN set -x \
&& apk update \
&& apk add --no-cache bash \
python \
curl \
coreutils \
openssl \
jq \
py-pip \
&& apk add --virtual=build \
gcc \
libffi-dev \
musl-dev \
libxml2-dev \
libxslt-dev \
linux-headers \
gcc \
libffi \
openssl-dev \
python-dev \
&& pip install azure-cli \
&& apk del --purge build
当我运行docker build命令时,出现以下错误:
config.status: creating src/libsodium/include/sodium/version.h
config.status: creating test/default/Makefile
config.status: creating test/Makefile
config.status: executing depfiles commands
config.status: executing libtool commands
error: [Errno 2] No such file or directory
----------------------------------------
Command "/usr/bin/python -u -c "import setuptools, tokenize;__file__='/tmp/pip-build-ayCiZW/pynacl/setup.py';exec(compile(getattr(tokenize, 'open', open)(__file__).read().replace('\r\n', '\n'), __file__, 'exec'))" install --record /tmp/pip-3Yq3c3-record/install-record.txt --single-version-externally-managed --compile" failed with error code 1 in /tmp/pip-build-ayCiZW/pynacl/
You are using pip version 8.1.2, however version 9.0.1 is available.
You should consider upgrading via the 'pip install --upgrade pip' command.
我在这里做错了什么?我错过了任何依赖吗?
答案 0 :(得分:0)
您可以将基础泊坞窗图像用于azure-cli并添加到其中。它建立在高山上。请参阅:https://hub.docker.com/r/azuresdk/azure-cli-python/~/dockerfile/
答案 1 :(得分:0)
对于有兴趣在上述问题中重新使用泊坞窗文件的任何人,您需要安装make
才能使用。