如何在debian上安装bcmath:jessie php5.6?

zwi*_*ion 1 bcmath docker php-5.6 debian-jessie

我在docker容器上运行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'
Run Code Online (Sandbox Code Playgroud)

two*_*new 8

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

RUN docker-php-ext-install bcmath
Run Code Online (Sandbox Code Playgroud)