mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-22 22:30:23 +00:00
bd784ced05
Signed-off-by: Niels de Vos <ndevos@ibm.com>
15 lines
240 B
Docker
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"]
|