ci: move centos8 to centos stream

CentOS 8 is no longer supported; use CentOS stream.
This commit is contained in:
Edward Thomson
2022-04-20 14:45:44 -04:00
parent 926efbd296
commit 06b32a3f74

View File

@@ -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 \