From 2f7d34417a38a743be775024a24ee155097d8d55 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luk=C3=A1=C5=A1=20Doktor?= Date: Fri, 8 Nov 2024 06:51:53 +0100 Subject: [PATCH] ci.ocp: Use the official python:3 container for sanity MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fedora F40 removed python3 from the base container, to avoid such issues let's rely on the latest and greates official python container. Fixes: #10497 Signed-off-by: Lukáš Doktor --- ci/openshift-ci/smoke/http-server.yaml.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/openshift-ci/smoke/http-server.yaml.in b/ci/openshift-ci/smoke/http-server.yaml.in index e993ce3c8b..69de921e83 100644 --- a/ci/openshift-ci/smoke/http-server.yaml.in +++ b/ci/openshift-ci/smoke/http-server.yaml.in @@ -13,7 +13,7 @@ metadata: spec: containers: - name: http-server - image: registry.fedoraproject.org/fedora + image: docker.io/library/python:3 ports: - containerPort: 8080 command: ["python3"]