我正在构建一个基于Debian Buster的docker镜像,现在我想在容器中使用unattended-upgrades。
不幸的是,这个包似乎不可用:
root@0c5100b570a8:/# apt install unattended-upgrades
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package unattended-upgrades有人知道如何在Debian Buster容器中安装unattended-upgrades包吗?
发布于 2020-01-27 19:46:08
您需要先更新:
apt-get update && apt-get install -y unattended-upgradeshttps://stackoverflow.com/questions/59930433
复制相似问题