1. ホーム
  2. docker

[解決済み] E: gnupg, gnupg2, gnupg1 がインストールされていないようですが、この操作に必要なのはこれらのうちの1つです。

2022-04-20 14:36:15

質問

Windows 10 proにDockerをインストールしました。git-bashで以下のコマンドを実行する際に問題に直面しています。

docker-compose up -d --build

と表示され、以下のエラーが発生しました。

E: gnupg, gnupg2 and gnupg1 do not seem to be installed, but one of them is required for this operation
(23) Failed writing body
Error executing command, exiting
ERROR: Service 'web' failed to build: The command '/bin/sh -c curl -sL https://deb.nodesource.com/setup_8.x | bash' returned a non-zero code: 1

解決方法は?

Dockerfileの中で、まずこれを実行します。

apt-get update && apt-get install -y gnupg2

または

apt-get update && apt-get install -y gnupg