2

我在docker 容器上运行 linux 实例。它是一个 php 5.6 的 debian:jessie。

我想安装bcmath模块,但没有成功。

有人知道怎么做吗?

root@1419c032c35f:/etc/php5/fpm# apt install php5.6-bcmath
Reading package lists... Done
Building dependency tree       
Reading state information... Done
E: Unable to locate package php5.6-bcmath
E: Couldn't find any package by regex 'php5.6-bcmath'
4

1 回答 1

12

只需创建一个 Dockerfile,它将从您想要的图像(上面链接的那个)构建并添加该行

RUN docker-php-ext-install bcmath
于 2017-11-13T20:07:05.850 回答