mirror of
https://git.mirrors.martin98.com/https://github.com/ceph/ceph-csi.git
synced 2025-10-14 11:31:32 +08:00

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"]
|