我正在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'
答案 0 :(得分:6)
只需创建一个Dockerfile,它将根据您想要的图像构建(上面链接的那个)并添加行
RUN docker-php-ext-install bcmath