mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-22 22:30:23 +00:00
92c8f723f9
registry.centos.org is not officially maintained by the CentOS infrastructure team. The container images on quay.io are the official once and we should use those instead. Signed-off-by: Madhu Rajanna <madhupr007@gmail.com>
15 lines
239 B
Docker
15 lines
239 B
Docker
FROM quay.io/centos/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"]
|