mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-10 08:20:23 +00:00
15 lines
224 B
Plaintext
15 lines
224 B
Plaintext
|
FROM centos:latest
|
||
|
|
||
|
RUN true \
|
||
|
&& yum -y install skopeo \
|
||
|
&& yum -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"]
|