FROM scratch
ADD debian-rootfs.tar.xz /
CMD ["bash"]
FROM scratch
ADD rootfs.tar.gz /
RUN apt update -y && apt install -y vim && apt autoremove && apt autoclean && apt clean
CMD ["bash"]
FROM irepoing/debian:10
RUN apt update -y && apt install -y procps less curl wget telnet vim zip unzip git net-tools iputils-ping lsof tcpdump strace traceroute \
&& apt install -y tzdata && \cp /usr/share/zoneinfo/Asia/Shanghai /etc/localtime \
&& apt autoremove && apt autoclean && apt clean
CMD ["bash"]
RUN sed -i 's/deb.debian.org/mirrors.aliyun.com/g' /etc/apt/sources.list
RUN sed -i 's/security.debian.org/mirrors.aliyun.com/g' /etc/apt/sources.list
Content type
Image
Digest
sha256:86c2b034d…
Size
47.3 MB
Last updated
over 2 years ago
docker pull irepoing/debian:12