Merge branch 'whois' of github.com:airtonzanon/dockerfiles into airtonzanon-whois

* 'whois' of github.com:airtonzanon/dockerfiles:
  Changed base image to alpine and added a whois package from edge
  Added Dockerfile for whois
This commit is contained in:
Jess Frazelle 2016-06-06 10:05:36 -07:00
commit 010142c15c
No known key found for this signature in database
GPG Key ID: 18F3685C0022BFF3

6
whois/Dockerfile Normal file
View File

@ -0,0 +1,6 @@
FROM alpine
MAINTAINER Airton Zanon "airtonzanon@gmail.com"
RUN echo "@edge http://dl-4.alpinelinux.org/alpine/edge/testing" >> /etc/apk/repositories && apk --update --force add whois@edge
ENTRYPOINT ["whois"]