Sign inSign up

irepoing/debian

By irepoing

Updated over 2 years ago

debian linux images

Image
0

264

irepoing/debian repository overview

debian

10

FROM scratch
ADD debian-rootfs.tar.xz /
CMD ["bash"]

base

FROM scratch
ADD rootfs.tar.gz /
RUN apt update -y && apt install -y vim && apt autoremove && apt autoclean && apt clean
CMD ["bash"]

base tool

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

change sources

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

Tag summary

Content type

Image

Digest

sha256:86c2b034d

Size

47.3 MB

Last updated

over 2 years ago

docker pull irepoing/debian:12