I’m also still having an issue since the last update. I’m not using the commands as described in the installation instructions though, and on top of I’m unfortunately still stuck with Debian Buster. Part of our dockerfile is the following:
mv /tmp/graph_tool.list /etc/apt/sources.list.d/ && \
apt-key adv --keyserver keyserver.ubuntu.com --recv-key <key-id> && \
The output of our last successful build:
"#16 23.98 Executing: /tmp/apt-key-gpghome.6X8X0QXEjW/gpg.1.sh --keyserver keyserver.ubuntu.com --recv-key 612DEFB798507F25",
"#16 24.35 gpg: key 612DEFB798507F25: public key \"Tiago de Paula Peixoto <tiago@skewed.de>\" imported",
"#16 24.36 gpg: Total number processed: 1",
"#16 24.36 gpg: imported: 1",
"#16 25.90 Warning: apt-key output should not be parsed (stdout is not a terminal)",
"#16 27.00 OK",
...
"#16 27.25 Get:5 https://downloads.skewed.de/apt buster InRelease [7540 B]",
"#16 27.38 Get:6 http://deb.dev.senso2.me buster-backports/main amd64 Packages [3492 B]",
"#16 27.77 Get:7 https://downloads.skewed.de/apt buster/main amd64 Packages [28.1 kB]",
"#16 27.81 Fetched 41.2 kB in 1s (54.3 kB/s)",
Recently this started failing:
"#14 38.41 Err:5 https://downloads.skewed.de/apt buster InRelease",
"#14 38.41 The following signatures were invalid: REVKEYSIG 7A80C8ED4FCCBE09 Tiago de Paula Peixoto <tiago@skewed.de>",
"#14 38.41 Reading package lists...",
"#14 39.07 W: GPG error: https://downloads.skewed.de/apt buster InRelease: The following signatures were invalid: REVKEYSIG 7A80C8ED4FCCBE09 Tiago de Paula Peixoto <tiago@skewed.de>",
"#14 39.07 E: The repository 'https://downloads.skewed.de/apt buster InRelease' is not signed.",
So I updated the key ID, but now I still get the same error:
"#17 17.32 Executing: /tmp/apt-key-gpghome.7NGt4ICS9T/gpg.1.sh --keyserver keyserver.ubuntu.com --recv-key 7A80C8ED4FCCBE09",
"#17 17.84 gpg: key 612DEFB798507F25: public key \"Tiago de Paula Peixoto <tiago@skewed.de>\" imported",
"#17 17.84 gpg: Total number processed: 1",
"#17 17.84 gpg: imported: 1",
"#17 18.66 Warning: apt-key output should not be parsed (stdout is not a terminal)",
"#17 19.54 OK",
...
"#17 19.81 Get:5 https://downloads.skewed.de/apt buster InRelease [7540 B]",
"#17 20.24 Get:6 http://deb.dev.senso2.me buster-backports/main amd64 Packages [3492 B]",
"#17 20.37 Err:5 https://downloads.skewed.de/apt buster InRelease",
"#17 20.37 The following signatures were invalid: REVKEYSIG 7A80C8ED4FCCBE09 Tiago de Paula Peixoto <tiago@skewed.de>",
"#17 20.37 Reading package lists...",
"#17 20.81 W: GPG error: https://downloads.skewed.de/apt buster InRelease: The following signatures were invalid: REVKEYSIG 7A80C8ED4FCCBE09 Tiago de Paula Peixoto <tiago@skewed.de>",
"#17 20.81 E: The repository 'https://downloads.skewed.de/apt buster InRelease' is not signed.",
The odd thing is that it still mentions the old key ID (612DEFB798507F25) being imported. Is this an issue with the key on the key server?
I would align the procedure in our Dockerfile with the installation instructions, but unfortunately there doesn’t appear to be a keyring file for Buster anymore. This is of course understandable, since Buster is EOL for a while now and even its apt repository has been archived by now.