Dockerdocker-composeでコンテナビルド時にAPTでモジュールをインストールしようとすると下記のようなメッセージとともに失敗することがあります。
> [6/6] RUN apt-get install binutils:
#0 0.250 Reading package lists…
#0 0.821 Building dependency tree…
#0 0.931 Reading state information…
#0 1.062 The following additional packages will be installed:
#0 1.064 binutils-common binutils-x86-64-linux-gnu libbinutils
#0 1.065 Suggested packages:
#0 1.065 binutils-doc
#0 1.083 The following NEW packages will be installed:
#0 1.085 binutils binutils-common binutils-x86-64-linux-gnu libbinutils
#0 1.091 0 upgraded, 4 newly installed, 0 to remove and 10 not upgraded.
#0 1.091 Need to get 4432 kB of archives.
#0 1.091 After this operation, 28.2 MB of additional disk space will be used.
#0 1.091 Do you want to continue? [Y/n] Abort.
<docker file>
~~~~~
RUN apt update
RUN apt-get install binutils~~~~~
解決策
インストール時に聞かれるYes/Noに答えるオプションを設定する必要がある。
下記のようにモジュールインストール時に-yを付ける必要があります
~~~
RUN apt update
RUN apt-get install -y binutils~~~
コメント
[…] 関連記事:【Docker】コンテナbuild失敗時のDo you want to continue? [Y/n] Abort. への対処法 […]