Skip to content

Commit

Permalink
preinstall tools
Browse files Browse the repository at this point in the history
  • Loading branch information
igueler authored Jun 11, 2018
1 parent b1e2e1b commit e1f410a
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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/*

0 comments on commit e1f410a

Please sign in to comment.