gpt4 book ai didi

linux - Ubuntu dockerfile - mailutils 安装

转载 作者:太空狗 更新时间:2023-10-29 11:50:16 25 4
gpt4 key购买 nike

我在 ubuntu 图像上通过 dockerfile 安装 mailutils

我这样做是通过:

运行 apt-get install -y mailutils

但是,在这条线上我得到以下信息:

Please select the mail server configuration type that best meets your needs.

No configuration:
Should be chosen to leave the current configuration unchanged.
Internet site:
Mail is sent and received directly using SMTP.
Internet with smarthost:
Mail is received directly using SMTP or by running a utility such
as fetchmail. Outgoing mail is sent using a smarthost.
Satellite system:
All mail is sent to another machine, called a 'smarthost', for delivery.
Local only:
The only delivered mail is the mail for local users. There is no network.

1. No configuration 3. Internet with smarthost 5. Local only
2. Internet Site 4. Satellite system

当我对 Debian 镜像执行完全相同的操作时,我没有看到此选项。

在使用 Dockerfile 时,我使用 -y 前缀来处理所有是/否安装问题。我该如何处理这样的选项?我尝试添加一个 -2 前缀。

有没有办法跳过这个?为什么 ubuntu 需要这个而 debian 不需要?尽管不需要此输入,但我已经检查过并且邮件在 debian 中正常运行。

最佳答案

使用以下dockerfile:

FROM ubuntu:latest
ENV DEBIAN_FRONTEND="noninteractive"
RUN apt-get update && apt-get install -y mailutils

重要的部分是将 debconf 设置为 noninteractive 模式。

关于linux - Ubuntu dockerfile - mailutils 安装,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40890011/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com