其他分享
首页 > 其他分享> > docker build时出现错误"debconf: unable to initialize frontend: Dialog"如何处理?

docker build时出现错误"debconf: unable to initialize frontend: Dialog"如何处理?

作者:互联网

1. 详细日志如下:

debconf: unable to initialize frontend: Dialog
debconf: (Dialog frontend will not work on a dumb terminal, an emacs shell buffer, or without a controlling terminal.)
debconf: falling back to frontend: Readline
debconf: unable to initialize frontend: Readline
debconf: (This frontend requires a controlling tty.)
debconf: falling back to frontend: Teletype
dpkg-preconfigure: unable to re-open stdin:

2. 修复示例如下:

修改Dockerfile文件,

FROM ubuntu
ARG DEBIAN_FRONTEND=noninteractive
RUN apt-get update && \
       apt-get -y install sudo dialog apt-utils
RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selections
RUN sudo \
   echo "postfix postfix/mailname string aktiva.co.id" | debconf-set-selections && \
   echo "postfix postfix/main_mailer_type string 'Internet Site'" | debconf-set-selections

 


标签:debconf,set,frontend,postfix,apt,unable
来源: https://www.cnblogs.com/dakewei/p/12802213.html