From 39660a27f37fae2b8ade2c33c526b0d713662d81 Mon Sep 17 00:00:00 2001 From: Niels de Vos Date: Thu, 25 Apr 2024 12:03:55 +0200 Subject: [PATCH] build: use Fedora 39 as base image for test container It seems GitHub has an issue with the Fedora 40 container image, extracting the Golang tarball fails. The Fedora 39 image does not have this problem, so use that for the time being. Signed-off-by: Niels de Vos (cherry picked from commit 60e2527917262349676d09d4678003f7beec3cf7) --- scripts/Dockerfile.test | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/Dockerfile.test b/scripts/Dockerfile.test index 5b03911c730..2e9eb13ef39 100644 --- a/scripts/Dockerfile.test +++ b/scripts/Dockerfile.test @@ -8,7 +8,7 @@ # little different. # -FROM registry.fedoraproject.org/fedora:latest +FROM registry.fedoraproject.org/fedora:39 ARG GOPATH=/go ARG GOROOT=/usr/local/go