如何在 debian:jessie php5.6 上安装 bcmath?
How to install bcmath on a debian:jessie php5.6?
我是 运行 docker container 上的一个 linux 实例。它是 debian:jessie 和 php 5.6.
我想安装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'
只需创建一个 Dockerfile,它将根据您想要的图像(上面链接的那个)构建,并添加行
RUN docker-php-ext-install bcmath
我是 运行 docker container 上的一个 linux 实例。它是 debian:jessie 和 php 5.6.
我想安装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'
只需创建一个 Dockerfile,它将根据您想要的图像(上面链接的那个)构建,并添加行
RUN docker-php-ext-install bcmath