From cc7830abb63f86f596b06105af44c7f4d61323a6 Mon Sep 17 00:00:00 2001 From: Dennis Maisenbacher Date: Thu, 31 Oct 2024 14:06:14 +0000 Subject: [PATCH] dockerfile: Add gpg pkg to fix codecov workflows The code coverage workflow of both nvme-cli and libnvme is silently failing partly because gpg is not present for importing the Codecov gpg key. See https://github.com/linux-nvme/nvme-cli/actions/runs/11609541747/job/32326984209 At the same time clean up packages that are installed twice. Signed-off-by: Dennis Maisenbacher --- Dockerfile.debian.python | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Dockerfile.debian.python b/Dockerfile.debian.python index 7ab0694..fa8e570 100644 --- a/Dockerfile.debian.python +++ b/Dockerfile.debian.python @@ -10,9 +10,7 @@ RUN apt-get update && \ apt-get install --no-install-recommends -y \ meson gcc g++ clang pkg-config git \ libjson-c-dev libssl-dev libkeyutils-dev libdbus-1-dev libpython3-dev \ - pipx python3-dev swig xz-utils \ - xz-utils \ - lcov && \ + pipx python3-dev swig xz-utils lcov gnupg && \ apt-get update && \ apt-get clean && \ rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*