summaryrefslogtreecommitdiff
path: root/ci
diff options
context:
space:
mode:
authorEdward Thomson <ethomson@edwardthomson.com>2022-04-20 14:45:44 -0400
committerEdward Thomson <ethomson@edwardthomson.com>2022-04-20 14:45:52 -0400
commit06b32a3f74c8ed97d07e64a372a3192fee6fb41d (patch)
tree0972a3209789b927de27a367fd425a1005ae109f /ci
parent926efbd296dc5d80cc04fd6a0dfc4e7726d5799c (diff)
downloadlibgit2-06b32a3f74c8ed97d07e64a372a3192fee6fb41d.tar.gz
ci: move centos8 to centos stream
CentOS 8 is no longer supported; use CentOS stream.
Diffstat (limited to 'ci')
-rw-r--r--ci/docker/centos86
1 files changed, 5 insertions, 1 deletions
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 \