Commit 06b32a3f74c8ed97d07e64a372a3192fee6fb41d

Edward Thomson 2022-04-20T14:45:44

ci: move centos8 to centos stream CentOS 8 is no longer supported; use CentOS stream.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
diff --git a/ci/docker/centos8 b/ci/docker/centos8
index 823a465..81f0c3c 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 \