0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

[備忘] Dockerのイメージビルドが失敗した(ls: cannot access '.' : Operation not permitted)

Posted at

備忘のために。

起きたこと

Dockerコンテナのビルド時 docker-php-ext-install pdo_mysql をRUNしたら掲題のエラーが発生。
ベースイメージはphp-fpm:7.3
lsコマンドがエラーになっていた。

参考

こちらのページとほぼ同様の事象が起きていたので丸々参考に。
ありがとうございます。

原因と対処

  • ベースイメージ内のlsコマンドがxstatというシステムコールを利用していた。
    • lsのバージョンが8.32で、ちょうど切り替わったバージョンらしい。
  • ホストマシンにインストールされていたDockerのバージョンが18.xxで、そのSeccompにxstatが許可されていなかった。
  • さらにカーネルとDockerを仲介するlibseccompもxstatに対応していなかった。
  • 両方のバージョンを上げることで対処。
0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?