debug-docker/Dockerfile

6 lines
257 B
Docker
Raw Normal View History

2024-09-05 00:22:17 +02:00
FROM debian:12.7
2023-07-17 09:58:38 +02:00
RUN apt-get update -qq
2024-05-26 20:42:25 +02:00
RUN apt-get install -qq curl nmap inetutils-ping iftop ldap-utils vim nano git ca-certificates --no-install-recommends
2023-07-17 09:58:38 +02:00
RUN rm -rf /var/lib/apt/lists/*
RUN rm -rf /var/cache/apt/*
ENTRYPOINT ["tail", "-f", "/dev/null"]