From f3577f633fce51b8baa3839a75b2dc186a1b5eb7 Mon Sep 17 00:00:00 2001 From: Mathieu Tortuyaux Date: Wed, 28 Aug 2024 16:37:48 +0200 Subject: [PATCH] python: install feedparser for Kernel CVEs fetching packaging is not used with the new version of the show-fixed-kernel-cves script. Signed-off-by: Mathieu Tortuyaux --- ci-automation/python-bin/python3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci-automation/python-bin/python3 b/ci-automation/python-bin/python3 index ccc29501dc..e1a509ded3 100755 --- a/ci-automation/python-bin/python3 +++ b/ci-automation/python-bin/python3 @@ -3,4 +3,4 @@ FOLDER="$(dirname "$(readlink -f "$1")")" docker pull docker.io/python:alpine 2>/dev/null >/dev/null # Map the current and the script folder, install the pip package needed for flatcar-build-scripts/show-fixed-kernel-cves.py -exec docker run --rm -i -v "${FOLDER}:${FOLDER}" -v "${PWD}:${PWD}" -w "${PWD}" docker.io/python:alpine sh -c "pip install packaging 2>/dev/null >/dev/null; python3 $*" +exec docker run --rm -i -v "${FOLDER}:${FOLDER}" -v "${PWD}:${PWD}" -w "${PWD}" docker.io/python:alpine sh -c "( apk add --update git && pip install feedparser ) 2>/dev/null >/dev/null; python3 $*"