From 81cbc9e84d0610bd8263ee6dc04ef07b7536d545 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 --- 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