ceph-csi/mirror/Containerfile
Niels de Vos bd784ced05 ci: use CentOS 9 Stream base image for mirroring job
Signed-off-by: Niels de Vos <ndevos@ibm.com>
2024-05-29 16:53:57 +02:00

15 lines
240 B
Docker

FROM quay.io/centos/centos:stream9
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"]