前提・実現したいこと
RaspberryPi 4でイーサネットコンバーターを作ろうとしていて、こちらのページを参考にやっていったのですが、Dockerイメージのビルドで失敗してしまいます。
下のようなエラーが起きております。
詳しい方がいらっしゃれば、詳しく教えていただけると嬉しいです。
発生している問題・エラーメッセージ
Sending build context to Docker daemon 133MB Step 1/5 : FROM ubuntu:latest ---> 014028cfedab Step 2/5 : EXPOSE 67:67/udp ---> Using cache ---> 580eb7cf5556 Step 3/5 : ARG DEBIAN_FRONTEND=noninteractive ---> Using cache ---> b0006cc6338e Step 4/5 : RUN apt update && apt install -y kea-dhcp4-server tzdata && ln -s -f /usr/share/zoneinfo/Asia/Tokyo /etc/localtime && echo "Asia/Tokyo" > /etc/timezone && dpkg-reconfigure -f noninteractive tzdata && sed -i -e "s//etc/kea\-dhcp4\-server.conf//etc/kea/kea\-dhcp4.conf/" /etc/init.d/kea-dhcp4-server && rm -rf /var/lib/apt/lists/* ---> Running in b4c9d8cf3e41 WARNING: apt does not have a stable CLI interface. Use with caution in scripts. Get:1 http://ports.ubuntu.com/ubuntu-ports focal InRelease [265 kB] Get:2 http://ports.ubuntu.com/ubuntu-ports focal-updates InRelease [111 kB] Err:1 http://ports.ubuntu.com/ubuntu-ports focal InRelease At least one invalid signature was encountered. Err:2 http://ports.ubuntu.com/ubuntu-ports focal-updates InRelease At least one invalid signature was encountered. Get:3 http://ports.ubuntu.com/ubuntu-ports focal-backports InRelease [98.3 kB] Err:3 http://ports.ubuntu.com/ubuntu-ports focal-backports InRelease At least one invalid signature was encountered. Get:4 http://ports.ubuntu.com/ubuntu-ports focal-security InRelease [107 kB] Err:4 http://ports.ubuntu.com/ubuntu-ports focal-security InRelease At least one invalid signature was encountered. Reading package lists... W: GPG error: http://ports.ubuntu.com/ubuntu-ports focal InRelease: At least one invalid signature was encountered. E: The repository 'http://ports.ubuntu.com/ubuntu-ports focal InRelease' is not signed. W: GPG error: http://ports.ubuntu.com/ubuntu-ports focal-updates InRelease: At least one invalid signature was encountered. E: The repository 'http://ports.ubuntu.com/ubuntu-ports focal-updates InRelease' is not signed. W: GPG error: http://ports.ubuntu.com/ubuntu-ports focal-backports InRelease: At least one invalid signature was encountered. E: The repository 'http://ports.ubuntu.com/ubuntu-ports focal-backports InRelease' is not signed. W: GPG error: http://ports.ubuntu.com/ubuntu-ports focal-security InRelease: At least one invalid signature was encountered. E: The repository 'http://ports.ubuntu.com/ubuntu-ports focal-security InRelease' is not signed. The command '/bin/sh -c apt update && apt install -y kea-dhcp4-server tzdata && ln -s -f /usr/share/zoneinfo/Asia/Tokyo /etc/localtime && echo "Asia/Tokyo" > /etc/timezone && dpkg-reconfigure -f noninteractive tzdata && sed -i -e "s//etc/kea\-dhcp4\-server.conf//etc/kea/kea\-dhcp4.conf/" /etc/init.d/kea-dhcp4-server && rm -rf /var/lib/apt/lists/*' returned a non-zero code: 100
該当のソースコード
docker build ./ -t kea-dhcp4-server
補足情報
RaspberryPi 4
5.4.51-v7l+
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/08/12 08:50 編集