dockerfileでubuntuのdocker buildしたけど、途中でエラーが発生してコンテナイメージが作成できない。以下のようなエラー
ERROR: failed to solve: failed to solve with frontend dockerfile.v0: failed to build LLB: executor failed running [/bin/sh -c apt update -y && apt install -y iputils-ping net-tools]: runc did not terminate sucessfully
途中で以下のようなエラー文字列が吐き出されている
WARNING: apt does not have a stable CLI interface. Use with caution in scripts.
apt install ではなく、apt-get installに変えたら、途中のエラーがでなくなる。
コメント