My build pipeline has stopped working all of a sudden which was working fine a few weeks ago. I'm using Dockerfile to build my app with python:3.8
as the base image. It has started failing on the apt-get update && apt-get install
part. I didn't change anything in the Dockerfile.
My Dockerfile looks like this:
FROM python:3.8
...
...
...
RUN apt-get update && \
apt-get install -y default-libmysqlclient-dev libffi-dev libssl-dev git jq tree
...
...
...
Below is the error I'm getting:
W: GPG error: http://deb.debian.org/debian bookworm InRelease: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 0E98404D386FA1D9 NO_PUBKEY 6ED0E7B82643E131 NO_PUBKEY F8D2585B8783D481
E: The repository 'http://deb.debian.org/debian bookworm InRelease' is not signed.
What is the cause of this? How to fix it?