mirror of
https://github.com/rancher/os.git
synced 2025-06-21 12:37:04 +00:00
21 lines
652 B
Docker
21 lines
652 B
Docker
FROM rancher/os
|
|
|
|
# replace this with `rancher/os-initrd`
|
|
RUN mkdir /tmp/initrd \
|
|
&& cd /tmp/initrd \
|
|
&& cat /dist/initrd-* | gunzip | cpio -i \
|
|
&& rm -rf usr/lib \
|
|
&& rm /tmp/initrd/usr/var/lib/cni/bin/host-local /tmp/initrd/usr/var/lib/cni/bin/bridge \
|
|
&& mkdir -p /tmp/initrd/var/lib/cni/bin \
|
|
&& ln -s ../../../../usr/bin/ros /tmp/initrd/var/lib/cni/bin/host-local \
|
|
&& ln -s ../../../../usr/bin/ros /tmp/initrd/var/lib/cni/bin/bridge \
|
|
&& cp -r --update --dereference --force /tmp/initrd/* / \
|
|
&& cd / \
|
|
&& rm -rf /tmp/initrd
|
|
|
|
#FROM rancher/os-installer
|
|
#RUN cp /bin/ros /init
|
|
|
|
#FROM rancher/os-installer
|
|
#RUN cp /bin/ros /init
|