mirror of
https://github.com/rancher/os.git
synced 2025-08-18 06:49:02 +00:00
- Use burmilla GitHub repos - Release under burmilla Docker Hub - GitHub action for create releases - Updated boot image and login banner - Use Debian as default console - Updated system-cron to v0.5.0 - Updated services to latest versions - Bump up kernel to 4.14.206 - Include burmilla/os-debianconsole:v1.9.0 to initrd
21 lines
656 B
Docker
21 lines
656 B
Docker
FROM burmilla/os
|
|
|
|
# replace this with `burmilla/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 burmilla/os-installer
|
|
#RUN cp /bin/ros /init
|
|
|
|
#FROM burmilla/os-installer
|
|
#RUN cp /bin/ros /init
|