diff --git a/Jenkinsfile b/Jenkinsfile index 85b2beab3b..3ab44308b8 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -4,7 +4,7 @@ def branch = env.CHANGE_TARGET ?: env.BRANCH_NAME def pkgs = [ [target: "centos-7", image: "centos:7", arches: ["amd64", "aarch64"]], // (EOL: June 30, 2024) - [target: "centos-8", image: "centos:8", arches: ["amd64", "aarch64"]], + [target: "centos-8", image: "quay.io/centos/centos:stream8", arches: ["amd64", "aarch64"]], [target: "debian-buster", image: "debian:buster", arches: ["amd64", "aarch64", "armhf"]], // Debian 10 (EOL: 2024) [target: "debian-bullseye", image: "debian:bullseye", arches: ["amd64", "aarch64", "armhf"]], // Debian 11 (Next stable) [target: "fedora-34", image: "fedora:34", arches: ["amd64", "aarch64"]], // EOL: May 17, 2022 diff --git a/rpm/centos-8/Dockerfile b/rpm/centos-8/Dockerfile index 75db612941..c4270befab 100644 --- a/rpm/centos-8/Dockerfile +++ b/rpm/centos-8/Dockerfile @@ -1,7 +1,7 @@ ARG GO_IMAGE ARG DISTRO=centos -ARG SUITE=stream8 -ARG BUILD_IMAGE=quay.io/centos/${DISTRO}:${SUITE} +ARG SUITE=8 +ARG BUILD_IMAGE=quay.io/centos/${DISTRO}:stream${SUITE} FROM ${GO_IMAGE} AS golang