我想在我的docker映像上安装php-zip(最终目标是使用PhpWord库(。我使用在Debian上运行的php:7.4-fpm。
在我的dockerfile中,我使用命令:
RUN apt-get update docker-php-ext-install zip
执行时,脚本会崩溃,因为它找不到/usr/src/php/ext/libzip。
所以我加了一个好的老";apt-get-install-libzip";,但它找不到包裹。如果它试图安装";libzip4〃:
checking for libzip >= 0.11 libzip != 1.3.1 libzip != 1.7.0... no
configure: error: Package requirements (libzip >= 0.11 libzip != 1.3.1 libzip != 1.7.0) were not met:
No package 'libzip' found
No package 'libzip' found
No package 'libzip' found
Consider adjusting the PKG_CONFIG_PATH environment variable if you installed software in a non-standard prefix.
Alternatively, you may set the environment variables LIBZIP_CFLAGS and LIBZIP_LIBS to avoid the need to call pkg-config.
See the pkg-config man page for more details.
ERROR: Service 'webapi' failed to build : The command '/bin/sh -c apt-get update && apt-get install libzip4 && docker-php-ext-install zip' returned a non-zero code: 1
我认为要么libzip4不是一个有效的版本,要么它无法在libzip和libzip4之间建立链接。
主要的问题是,如果没有这个库,我就会陷入困境,根本无法安装扩展。此外,当谈到docker时,我是一个安静的新手,所以我呼吁你的帮助!
谢谢你抽出时间!
好的,所以问题是你必须猜测你需要安装的包被称为"libzip dev";,不仅仅是";libzip";。
所以解决方案是:
RUN apt-get update
&& apt-get install -y libzip-dev
&& docker-php-ext-install zip