mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2025-02-17 09:37:49 +01:00
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" ]
|