假装构建一个2.0的docker image

由于没有官方提供的根文件系统
这里只能使用从iso中提取的全量根文件系统

FROM scratch
LABEL maintainer="zen <zhangyiming748@gmail.com>"
LABEL version="2.0"
LABEL description="This is a custom image based on scratch"
ADD nile-rootfs.tar.gz /
RUN apt-get update && apt-get install -y curl vim git neofetch 
RUN echo "root:123456" | chpasswd
USER root
RUN chown root /etc/sudo.conf
RUN chown root /etc/sudoers
CMD ["/bin/bash"]