add traceroute nmap

Signed-off-by: Jessica Frazelle <acidburn@docker.com>
This commit is contained in:
Jessica Frazelle 2015-10-04 16:10:44 -07:00
parent 92f0bcfbf5
commit d0e35188be
No known key found for this signature in database
GPG Key ID: 18F3685C0022BFF3
2 changed files with 18 additions and 0 deletions

9
nmap/Dockerfile Normal file
View File

@ -0,0 +1,9 @@
FROM debian:jessie
MAINTAINER Jessica Frazelle <jess@docker.com>
RUN apt-get update && apt-get install -y \
nmap \
--no-install-recommends \
&& rm -rf /var/lib/apt/lists/*
ENTRYPOINT [ "nmap" ]

9
traceroute/Dockerfile Normal file
View File

@ -0,0 +1,9 @@
FROM debian:jessie
MAINTAINER Jessica Frazelle <jess@docker.com>
RUN apt-get update && apt-get install -y \
traceroute \
--no-install-recommends \
&& rm -rf /var/lib/apt/lists/*
ENTRYPOINT [ "traceroute" ]