mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-10 00:10:20 +00:00
ed95c4aa78
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>
15 lines
240 B
Docker
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"]
|