From e1f410a871c310385ae12766030b6c0b6c2f9173 Mon Sep 17 00:00:00 2001 From: igueler Date: Mon, 11 Jun 2018 09:53:42 +0200 Subject: [PATCH] preinstall tools --- Dockerfile | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 9ba7123..3d0b2cb 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,6 +9,13 @@ ADD https://github.com/krallin/tini/releases/download/${TINI_VERSION}/tini /tini RUN chmod +x /tini ENTRYPOINT ["/tini", "--"] -# Preinstall xmllint -RUN apt-get -y update && apt-get -y install libxml2-utils && \ +# Preinstall tools +RUN apt-get -y update && apt-get -y install \ + gdb \ + iputils-ping \ + libxml2-utils \ + net-tools \ + netcat \ + telnet \ + vim && \ rm -rf /var/lib/apt/lists/*