问题
因为部分老项目使用5.6版本且部分功能依赖zip扩展 ,所以在镜像(apline)构建安装zip扩展,安装过程中报如下错误:
1 | Please reinstall the libzip distribution |
解决办法
1 | apk update |
补充
可能还有其他问题,不过我本机可能只缺少这些依赖,所以安装成功了
A wanderer capable of grasping the beauty of the grass, with a heart full of ancient charm, and a fondness for playful wit. Those who understand my words are knowledgeable individuals; those who decipher my code truly comprehend the essence. I am a wandering code swordsman, carrying my skills and riding freely through the digital world.
使用php8.1.11-apline镜像构建安装event扩展,构建一点流程没有发生任何错误,但是启动容器之后报如下错误:
1 | Warning: PHP Startup: Unable to load dynamic library 'event' (tried: /usr/local/lib/php/extensions/no-debug-non-zts-20210902/event (/usr/local/lib/php/extensions/no-debug |
后来搜索一下得知是因为event与另外的sockets扩展启动顺序问题,sockets需在event之前启动!
将/usr/local/etc/php/conf.d/
目录下的文件docker-php-ext-event.ini重命名为docker-php-ext-z-event.ini,让它排在 docker-php-ext-sockets.ini后面即可。
使用Clion作为C++开发,需要安装C++ g++ make 等编译工具链,ubuntu提供了一个build-essential
工具直接帮我们把c/c++对应的编译工具链依赖安装好
1 | sudo apt-get install build-essential |