ceph-csi/mirror/Containerfile
Niels de Vos ed95c4aa78 ci: use CentOS Stream 8 for infra containers
The container images for Jenkins Job Builder and mirroring images were
still using the EOL CentOS 8 base image. Rebuilding those
container-images fails as the CentOS mirrors do not provide the
repositories for installing package anymore.

Signed-off-by: Niels de Vos <ndevos@redhat.com>
2022-02-04 03:12:34 +00:00

15 lines
240 B
Docker

FROM quay.io/centos/centos:stream8
RUN true \
&& dnf -y install skopeo \
&& dnf -y clean all \
&& true
ADD images.txt /opt/mirror/
ADD mirror-images.sh /opt/mirror/
ENV HOME=/opt/mirror
WORKDIR /opt/mirror
CMD ["./mirror-images.sh"]