<2.14.1-python3.9 docker image> just got pushed an...
# ask-community
m
2.14.1-python3.9 docker image just got pushed and I'm getting key errors on
apt update
hmmm
Copy code
#0 1.143 Err:1 <http://deb.debian.org/debian> bookworm InRelease
#0 1.143   At least one invalid signature was encountered.
Is it me doing something dumb or the build is busted? Reverting to 2.14.0 "fixes" it.
n
hmm - thanks for the report @Mateusz we’ll look into this
m
my Dockerfile starts with:
Copy code
FROM prefecthq/prefect:2-python3.9
SHELL ["/bin/bash", "-c"]

RUN apt update
...
and errors on that line
Copy code
------
Dockerfile:4
--------------------
   2 |     SHELL ["/bin/bash", "-c"]
   3 |     
   4 | >>> RUN apt update
ERROR: failed to solve: process "/bin/bash -c apt update" did not complete successfully: exit code: 100
n
hm i dont think im quite able to reproduce this - trying a dockerfile with those lines is building for me okay are you still running into this? someone else had a theory that there was an upstream issue with refreshing packages from debian (maybe?)
m
thank you so much for trying to replicate - confirming it is indeed something in the upstream. Running
docker system prune -a
resolved the issue 🙏
👍 1