gpt4 book ai didi

docker - 从Dockerfile进行Docker构建期间使用STDIN

转载 作者:行者123 更新时间:2023-12-02 19:10:42 27 4
gpt4 key购买 nike

第一步,我正在尝试在Docker镜像中安装Miniconda,这就是我所拥有的:

    FROM ubuntu:14.04
RUN apt-get update && apt-get install wget
RUN wget *miniconda download URL* && bash file_downloaded.sh

当我尝试构建镜像时,它运行良好,直到它开始连续不断弹出以下消息:
>>>请回答"is"或“否”
那时我需要停止docker build。我该如何解决?我应该在dockerfile中包含一些内容吗?

最佳答案

我相信您可以将-b标志传递给miniconda Shell脚本,以避免手动回答

Installs Miniconda3 4.0.5

-b run install in batch mode (without manual intervention),
it is expected the license terms are agreed upon
-f no error if install prefix already exists
-h print this help message and exit
-p PREFIX install prefix, defaults to $PREFIX

像这样的东西:
RUN wget http://......-x86_64.sh -O miniconda.sh
RUN chmod +x miniconda.sh \
&& bash ./miniconda.sh -b

关于docker - 从Dockerfile进行Docker构建期间使用STDIN,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38576020/

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