起因
在给RabbitMQ 版本为 3.7.7容器安装 下载工具 wget
:apt-get install -y wget
时
root@7170b01ddc10:/plugins# apt-get install -y wget
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package wget
原因
- 镜像中没有包缓存
解决方案
apt-get update
在安装包之前,如果命令位于dockerfile中,则需要添加-y(跳过系统提示,直接安装)
apt-get -y install wget
为了避免输出可以添加 -qq
参数
apt-get -qq -y