mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2024-11-23 19:32:30 +01:00
365dd63fcd
Signed-off-by: Jess Frazelle <me@jessfraz.com>
9 lines
189 B
Docker
9 lines
189 B
Docker
FROM alpine:latest
|
|
MAINTAINER Airton Zanon <airtonzanon@gmail.com>
|
|
|
|
RUN apk --no-cache add \
|
|
--repository http://dl-3.alpinelinux.org/alpine/edge/testing/ \
|
|
whois
|
|
|
|
ENTRYPOINT [ "whois" ]
|