Added Dockerfile for whois

This commit is contained in:
Airton Zanon 2016-05-10 14:50:19 -03:00
parent f958658fef
commit 98683c6a68

9
whois/Dockerfile Executable file
View File

@ -0,0 +1,9 @@
FROM debian:wheezy
MAINTAINER Airton Zanon "airtonzanon@gmail.com"
RUN apt-get update && \
apt-get install whois -y \
&& rm -rf /var/lib/apt/lists/*
ENTRYPOINT ["whois"]
CMD ["--verbose"]