LoginSignup
3
1

More than 1 year has passed since last update.

[Docker] build失敗時のDo you want to continue? [Y/n] Abort. への対処

Posted at
#5 144.0 1 upgraded, 218 newly installed, 0 to remove and 15 not upgraded.
#5 144.0 Need to get 171 MB of archives.
#5 144.0 After this operation, 632 MB of additional disk space will be used.
#5 144.0 Do you want to continue? [Y/n] Abort.

docker コンテナファイルを更新して↑のようなメッセージとともに失敗した場合、
インストール時に聞かれるYes/Noに答えるオプションを設定する必要がある。

FROM openjdk:11-slim

ENV DISPLAY host.docker.internal:0.0

RUN apt-get update && \
    apt-get install -y openjfx
WORKDIR /usr/src

apt-get コマンドのその他オプションも必要に応じて追加する

3
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
1