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

Docker: Having issues installing apt-utils

我正在尝试在 Docker 上安装 apt-utils,因为当我在 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

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

这实际上不是错误,忽略它是安全的。我已经构建了大量容器镜像,其中任何一个都没有使用 apt-utils,并且不管这个警告消息如何,所有包安装都会正常运行。

无论如何,如果你想要 apt-utils - 安装它。它会给你这个警告一次,然后它会在以后调用 apt-get 时消失(正如你在自己的日志中看到的那样,curl 在没有该消息的情况下安装) .

注意如果您安装 apt-utils,您将收到其他警告(因为现在安装程序 可以 运行 交互式配置并将尝试并失败)。要抑制那些并拥有具有默认交互配置的包,运行 apt-get 像这样 DEBIAN_FRONTEND=noninteractive apt-get install -y pkgs....

在网上搜索后,我发现了一些值得一提的替代方案,而不是每次都将 DEBIAN_FRONTEND=noninteractive 放在 apt-get install -y {your-pkgs} 前面:

备选方案 1:ARG DEBIAN_FRONTEND=非交互式

The ARG instruction defines a variable that users can pass at build-time to the builder with the docker build command using the --build-arg = flag. (Reference: [6])

解决方案特点:

  • ARG 指令仅在构建期间设置
  • 选项 'noninteractive' 仅设置为 build-time 的默认值。
  • 因为它是一个参数,所以可以通过为该参数传递另一个值来更改它,例如docker build --build-arg DEBIAN_FRONTEND=newt

示例:

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

选项 2:On-the-fly

这是Leo K的解决方案

解决方案特点:

  • 需要的地方可以设置。所以一个很好的 fine-grained 解决方案。
  • 可以在特定命令中设置不同的值,所以不是全局设置。
  • 范围是 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:运行 导出 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} && \
    ...

更多阅读(参考)

这是一个持续存在的问题,没有很好的解决方案...我接受了这个,它不是最优的,但它有效:

ARG DEBIAN_FRONTEND=noninteractive

RUN apt-get update && apt-get install -y apt-utils 2>&1 | \
    grep -v "^debconf: delaying package configuration, since apt-utils.*"

解释:

  • grep -v 反向匹配,以它开头的行将结束!
  • 如果您在运行时不需要它,ARG 是新的 ENV。
  • 然后我们可以整天使用 apt-get 而不会在从头构建映像时显示该错误。

这有效的证明: https://asciinema.org/a/WJCDEYcxCIy6EF7eXw0MAnK3c

我只是 cd 到 / 和 运行 apt-get 安装 apt-utils 和中提琴。已安装但没有警告