Docker:安装apt-utils时遇到问题


109

我尝试apt-utils在Docker上安装,因为当我刚做的时候apt-get update,出现了错误:debconf: delaying package configuration, since apt-utils is not installed。因此,我添加了一行要安装apt-utils(以及curl):

RUN apt-get update && apt-get install -y apt-utils && apt-get install -y curl

但是,我仍然遇到该错误,使我相信我的命令无效。下面是我尝试构建图像时的输出。

Step 5/12 : RUN apt-get update && apt-get install -y apt-utils && apt-get install -y curl
 ---> Running in 6e6565ff01bd
Get:1 http://security.debian.org jessie/updates InRelease [94.4 kB]
Ign http://deb.debian.org jessie InRelease
Get:2 http://deb.debian.org jessie-updates InRelease [145 kB]
Get:3 http://deb.debian.org jessie Release.gpg [2420 B]
Get:4 http://deb.debian.org jessie Release [148 kB]
Get:5 http://security.debian.org jessie/updates/main amd64 Packages [624 kB]
Get:6 http://deb.debian.org jessie-updates/main amd64 Packages [23.0 kB]
Get:7 http://deb.debian.org jessie/main amd64 Packages [9098 kB]
Fetched 10.1 MB in 6s (1541 kB/s)
Reading package lists...
Reading package lists...
Building dependency tree...
Reading state information...
The following extra packages will be installed:
  libapt-inst1.5
The following NEW packages will be installed:
  apt-utils libapt-inst1.5
0 upgraded, 2 newly installed, 0 to remove and 24 not upgraded.
Need to get 537 kB of archives.
After this operation, 1333 kB of additional disk space will be used.
Get:1 http://deb.debian.org/debian/ jessie/main libapt-inst1.5 amd64 1.0.9.8.4 [169 kB]
Get:2 http://deb.debian.org/debian/ jessie/main apt-utils amd64 1.0.9.8.4 [368 kB]
debconf: delaying package configuration, since apt-utils is not installed
Fetched 537 kB in 0s (557 kB/s)
Selecting previously unselected package libapt-inst1.5:amd64.
(Reading database ... 21676 files and directories currently installed.)
Preparing to unpack .../libapt-inst1.5_1.0.9.8.4_amd64.deb ...
Unpacking libapt-inst1.5:amd64 (1.0.9.8.4) ...
Selecting previously unselected package apt-utils.
Preparing to unpack .../apt-utils_1.0.9.8.4_amd64.deb ...
Unpacking apt-utils (1.0.9.8.4) ...
Setting up libapt-inst1.5:amd64 (1.0.9.8.4) ...
Setting up apt-utils (1.0.9.8.4) ...
Processing triggers for libc-bin (2.19-18+deb8u10) ...
Reading package lists...
Building dependency tree...
Reading state information...
curl is already the newest version.
0 upgraded, 0 newly installed, 0 to remove and 24 not upgraded.
Removing intermediate container 6e6565ff01bd
 ---> f65e29c6a6b9
Step 6/12 : RUN curl -s https://packagecloud.io/install/repositories/github/git-lfs/script.deb.sh | bash
 ---> Running in f5764ba56103
Detected operating system as debian/8.
Checking for curl...
Detected curl...
Checking for gpg...
Detected gpg...
Running apt-get update... done.
Installing debian-archive-keyring which is needed for installing
apt-transport-https on many Debian systems.
Installing apt-transport-https... done.
Installing /etc/apt/sources.list.d/github_git-lfs.list...done.
Importing packagecloud gpg key... done.
Running apt-get update... done.

The repository is setup! You can now install packages.
Removing intermediate container f5764ba56103
 ---> a4e64687ab73

是什么原因造成的,我该如何解决?谢谢!

Answers:


103

这实际上不是错误,可以忽略它。我已经构建了许多容器映像,而它们中的任何一个都没有安装apt-utils,并且无论此警告消息如何,所有软件包安装都可以正常进行。

无论如何,如果您想拥有apt-utils,请安装它。它将向您发出一次警告,然后消失,以供以后调用apt-get(如在您自己的日志中看到的那样,curl安装时未显示该消息)。

注意如果您安装apt-utils,则会收到其他警告(因为现在安装程序可以运行交互式配置,并且会尝试并失败)。要禁止这些文件,并使用默认配置进行交互式配置,请像这样运行apt-getDEBIAN_FRONTEND=noninteractive apt-get install -y pkgs....


11
您可以为“可以安全地忽略它”注释提供参考吗?
Zak

19
这是一个已知的警告,请参阅此处的示例:github.com/phusion/baseimage-docker/issues/… (这种情况发生在具有交互式配置的软件包中,在其中询问您一些问题-这意味着跳过了交互式配置,但您没有这样做甚至不需要,并且无论如何都想要默认值,因为您正在运行自动安装)。
Leo K

这并不总是可忽略的警告,它取决于您要安装的特定软件包。有时,配置是必需的,您将必须进行交互式安装或寻找其他方法来为其提供所需的配置。
肯·威廉姆斯

44

搜索在互联网上后,我已经找到了一些替代品值得一提的,而不是每次投入时间DEBIAN_FRONTEND=noninteractive在前面apt-get install -y {your-pkgs}

选择1:ARG DEBIAN_FRONTEND =非交互式

ARG指令定义了一个变量,用户可以在构建时使用--build-arg =标志使用docker build命令将其传递给构建器。(参考:[ 6 ])

解决方案特点:

  • ARG 指令仅在构建期间设置
  • 选项“非交互式”仅设置为构建时的默认值。
  • 由于它是一个参数,因此可以通过为该参数传递另一个值(例如)来更改它 docker build --build-arg DEBIAN_FRONTEND=newt

例:

ARG DEBIAN_FRONTEND=noninteractive
...
RUN apt-get -yq install {your-pkgs}

选择2:即时

这是Leo K的解决方案。

解决方案特点:

  • 可以在需要的地方设置。所以是一个很好的细粒度解决方案。
  • 可以在特定命令中将其设置为其他值,因此不能全局设置。
  • 范围是RUN,不会影响其他指令。

例:

RUN DEBIAN_FRONTEND=noninteractive apt-get -yq install {your-pkgs}

选择3:ENV DEBIAN_FRONTEND =非交互式

设置ENV DEBIAN_FRONTEND noninteractive也是一种替代方法,但是强烈建议不要这样做。

另一种方法是在乞讨处设置,然后在Dockerfile的末尾取消设置。

解决方案特点:

  • ENV 指令将在构建后保留环境变量(不推荐),此外
  • 如果您忘记将其设置回默认值,则容易出错。
  • 因为使用设置了ENV,它将被所有图像继承,并从该图像中构建容器,从而有效地改变其行为。(如[ 1 ]中所述),以交互方式安装软件时,使用这些映像的人会遇到问题,因为安装程序不会显示任何对话框。
  • 默认的前端是DEBIAN_FRONTEND=newt(请参阅[ 2 ],因此必须在文件末尾设置它。

例:

# Set for all apt-get install, must be at the very beginning of the Dockerfile.
ENV DEBIAN_FRONTEND noninteractive
...
# Non-interactive modes get set back.
ENV DEBIAN_FRONTEND newt

备选方案4:RUN导出DEBIAN_FRONTEND =非交互式

解决方案特点:

  • 替代方案2非常相似
  • 通过脱钩,凝聚力受到了损害:为什么要输出此变量及其所属的变量(apt-get)。
  • 范围是RUN,不会影响其他指令。

例:

# Set the frontend and then install your package
RUN export DEBIAN_FRONTEND=noninteractive && \
    ...
    apt-get -yq install {your-pkgs} && \
    ...

阅读更多(参考)


2
我使用了“替代方案2:即时”:非常干净且方便,我再也没有令人困惑的警告
herve-guerin

我选择替代方法1,但仍收到警告。我Dockerfile开始FROM node:10.16.2 WORKDIR /usr/src/app ARG DEBIAN_FRONTEND=noninteractive,我跑docker build --no-cache -t node-10-16-2-plus-chrome .
Marecky
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.