From 5a377ad022d4fcc281264990bc94c39f0e14248b Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 8 Nov 2023 11:26:50 +0000 Subject: [PATCH 1/2] chore(deps): update registry.fedoraproject.org/fedora-minimal docker digest to 0f84081 --- image/Containerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/image/Containerfile b/image/Containerfile index f4e0857..6d84db2 100644 --- a/image/Containerfile +++ b/image/Containerfile @@ -1,4 +1,4 @@ -FROM registry.fedoraproject.org/fedora-minimal@sha256:842c98c7750eac24d8119282b3634abd17dbf673e19912a2ea27890a75eaa91b +FROM registry.fedoraproject.org/fedora-minimal@sha256:0f8408100c4e570f0fa724a75adb729d1103aa77b924e5827316efd90da615b2 RUN microdnf -y upgrade RUN microdnf -y install python git-core /usr/bin/pip From 271c7fcfcd17feb53d9d96ebaf7da15cb4fc6b80 Mon Sep 17 00:00:00 2001 From: Rohan McGovern Date: Tue, 14 Nov 2023 09:42:50 +1000 Subject: [PATCH 2/2] Fix build on Fedora 39 The minimal F39 image seems more minimal than F38 and we don't automatically end up with the needed packages to compile native python extensions. --- image/Containerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/image/Containerfile b/image/Containerfile index 6d84db2..9ca3f54 100644 --- a/image/Containerfile +++ b/image/Containerfile @@ -1,7 +1,7 @@ FROM registry.fedoraproject.org/fedora-minimal@sha256:0f8408100c4e570f0fa724a75adb729d1103aa77b924e5827316efd90da615b2 RUN microdnf -y upgrade -RUN microdnf -y install python git-core /usr/bin/pip +RUN microdnf -y install python gcc python3-devel git-core /usr/bin/pip ADD . /src