From 06b32a3f74c8ed97d07e64a372a3192fee6fb41d Mon Sep 17 00:00:00 2001 From: Edward Thomson Date: Wed, 20 Apr 2022 14:45:44 -0400 Subject: [PATCH] ci: move centos8 to centos stream CentOS 8 is no longer supported; use CentOS stream. --- ci/docker/centos8 | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/ci/docker/centos8 b/ci/docker/centos8 index 823a46590..81f0c3c76 100644 --- a/ci/docker/centos8 +++ b/ci/docker/centos8 @@ -1,6 +1,10 @@ ARG BASE=centos:8 -FROM ${BASE} AS yum +FROM ${BASE} AS stream +RUN dnf -y --disablerepo '*' --enablerepo=extras swap centos-linux-repos centos-stream-repos && \ + dnf -y distro-sync + +FROM stream AS yum RUN yum install -y \ which \ bzip2 \