docker java7 install fail
我正在尝试通过ppa(RUN add-apt-repository ppa:webupd8team/java -y)在我的docker映像中安装java7,但它失败了,并出现以下错误:
returned a non-zero code: 127
以下是正确安装但无法正常工作的建议方法。我也尝试过这两种ppas。
RUN apt-get install python-software-properties -y
RUN add-apt-repository ppa:webupd8team/java -y
#RUN add-apt-repository ppa:eugenesan/java -y
RUN apt-get update
RUN apt-get install oracle-java7-installer -y
下面是日志输出:
Step 28 : RUN add-apt-repository ppa:webupd8team/java -y
---> Running in b278761a4209
[91m/bin/sh: 1: add-apt-repository: not found
[0m
所以。。。我需要找出这个命令在帮助器库中的位置/是否存在,或者是什么:
add-apt-repository
add-apt-repository似乎是python-software-properties安装的一部分。我在该步骤中没有看到任何真正的错误,除了在构建的其他区域中弹出的这些消息。因此,我假设如果可以解决此问题,则上述python步骤将根据需要安装:
[91mdebconf: unable to initialize frontend: Dialog
debconf: (TERM is not set, so the dialog frontend is not usable.)
debconf: falling back to frontend: Readline
[0m[91mdebconf: unable to initialize frontend: Readline
debconf: (This frontend requires a controlling tty.)
debconf: falling back to frontend: Teletype
[0m[91mdpkg-preconfigure: unable to re-open stdin:
所以。如何设置术语或对话框?我以为-y允许这个