Make没有安装,错误sh: make: not found

今天在Docker容器中安装php-memcached扩展,报如下错误:
sh: make: not found

make 没安装,Linux(Debian、Ubuntu)终端中执行以下命令即可:

apt-get update
apt-get install make

Centos、Redhat下执行:

yum update
yum install make