Repository is not signed in docker build

DockerUbuntuApt

Docker Problem Overview


I have the following Dockerfile that uses the latest Ubuntu image pulled from dockerhub:

FROM ubuntu:latest  
RUN apt-get update  && apt-get install -y  g++ llvm lcov 

when I launch the docker build command, the following errors occur:

>Err:2 http://archive.ubuntu.com/ubuntu bionic InRelease At least one invalid signature was encountered.

>Err:1 http://security.ubuntu.com/ubuntu bionic-security InRelease At least one invalid signature was encountered.

>Err:3 http://archive.ubuntu.com/ubuntu bionic-updates InRelease At least one invalid signature was encountered.

>Err:4 http://archive.ubuntu.com/ubuntu bionic-backports InRelease At least one invalid signature was encountered.

>Reading package lists...

>W: GPG error: http://archive.ubuntu.com/ubuntu bionic InRelease: At least one invalid signature was encountered. E: The repository 'http://archive.ubuntu.com/ubuntu bionic InRelease' is not signed.

>W: GPG error: http://security.ubuntu.com/ubuntu bionic-security InRelease: At least one invalid signature was encountered. E: The repository 'http://security.ubuntu.com/ubuntu bionic-security InRelease' is not signed.

>W: GPG error: http://archive.ubuntu.com/ubuntu bionic-updates InRelease: At least one invalid signature was encountered. E: The repository 'http://archive.ubuntu.com/ubuntu bionic-updates InRelease' is not signed.

>W: GPG error: http://archive.ubuntu.com/ubuntu bionic-backports InRelease: At least one invalid signature was encountered. E: The repository 'http://archive.ubuntu.com/ubuntu bionic-backports InRelease' is not signed.

I read here https://superuser.com/questions/1331936/how-can-i-get-past-a-repository-is-not-signed-message-when-attempting-to-upgr that you can pass this error using --allow-unauthenitcated or --allow-insecure-repositories but both seem to me workarounds that may compromize security of the container.

EDIT

Tried to pull ubuntu:18.04, ubuntu:19:04, ubuntu:19.10 same error with different distro name

Docker Solutions


Solution 1 - Docker

Apparently my root partition was full (maybe I've tried too many times to download packages through apt), and running sudo apt clean solved the issue


In addition, the following commands should help clean up space:

docker system df # which can show disk usage and size of 'Build Cache'
docker image prune # add -f or --force to not prompt for confirmation
docker container prune # add -f or --force to not prompt for confirmation

Solution 2 - Docker

Since Docker API v1.25+ ( released: Nov 18, 2019 )

Running the command below fixed the problem for me:

docker system prune --force

The --force flag stands for noninteractive prune.

Additionally, you may want to give a try to the prune volume commands:

docker volume prune --force

Solution 3 - Docker

fixed by

docker image prune -f

looks like docker has a limit on maximum apt cache size on the host system

Solution 4 - Docker

For Raspbian, upgrade libseccomp manually on the host system by using:

curl http://ftp.us.debian.org/debian/pool/main/libs/libseccomp/libseccomp2_2.5.1-1_armhf.deb --output libseccomp2_2.5.1-1_armhf.deb
sudo dpkg -i libseccomp2_2.5.1-1_armhf.deb

This resolved my issue.

Original post is here.

Solution 5 - Docker

If you're using Docker Desktop, take care of the maximum disk image size you've specified in the settings. It can cause the issue if it gets full during the build.

enter image description here

Solution 6 - Docker

As @Danila and @Andriy pointed out this issue can easily be fixed running:

docker image prune -f
docker container prune -f

but posting this answer, as running just one of them didn't work for me (on MacOS X) - running both however does.

Solution 7 - Docker

This helps me:

 docker volume prune

Solution 8 - Docker

I had this problem on one of my two machines. Doing a ls -ld /tmp I got

drwxrwxrwt 3 root root 4096 May 15 20:46 /tmp

for the working one and

drwxr-xr-t 1 root root 4096 May 26 05:44 /tmp

for the failing one. After I did chmod 1777 /tmp, it worked!!

EDIT:

So, I dived a little deeper into this problem and realized there was something fundamentally wrong. I put my problems in another question and later found the answer that solved this myself: https://stackoverflow.com/a/62088961/7387935

The key point here is that on the machine that was working correctly I had aufs as storage driver and on the faulty one it was overlay2. After I changed that, all permissions were correct.

Solution 9 - Docker

I tried again later and it worked.

From https://github.com/docker-library/php/issues/898#issuecomment-539234070:

> That usually means the mirror is having issues (possibly partially out > of date; i.e. not completely synced from other mirrors) and often > clears itself up.

Solution 10 - Docker

I had to run container with --security-opt seccomp:unconfined.

Solution 11 - Docker

I added --network=host to the build command.

docker build --network=host -t REPOSITORY:TAG  ./

Solution 12 - Docker

this worked for me docker system prune -af --volumes and these other ones as well

docker image prune 
docker container prune
docker builder prune
docker volume prune

This running docker system df and see if you need free space on one of your volumes

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionAntonio La MarraView Question on Stackoverflow
Solution 1 - DockerAntonio La MarraView Answer on Stackoverflow
Solution 2 - DockerAndriy IvaneykoView Answer on Stackoverflow
Solution 3 - DockerDanila PleeView Answer on Stackoverflow
Solution 4 - DockerEmre TapcıView Answer on Stackoverflow
Solution 5 - DockerAmirreza NasiriView Answer on Stackoverflow
Solution 6 - DockerMagnusView Answer on Stackoverflow
Solution 7 - DockercelcinView Answer on Stackoverflow
Solution 8 - DockerFlorian BachmannView Answer on Stackoverflow
Solution 9 - DockertschumannView Answer on Stackoverflow
Solution 10 - DockerRok JarcView Answer on Stackoverflow
Solution 11 - DockerjcroomerView Answer on Stackoverflow
Solution 12 - Dockerd1jhoni1bView Answer on Stackoverflow