docker在制作镜像时,抛出异常:
debconf: unable to initialize frontend: Dialog
debconf: (TERM is not set, so the dialog frontend is not usable.)
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:
原因是因为在使用apt-get安装依赖时并非静默安装,需要交互,所以无法正常通过。
解决方法,在docker file中增加一句:
ENV DEBIAN_FRONTEND noninteractive
link: https://blog.csdn.net/a19891024/article/details/78250967