dockerfiles/telnet/Dockerfile

13 lines
239 B
Docker
Raw Normal View History

# command to run Telnet
# docker run -it --rm \
# --log-driver none \
# jess/telnet "$@"
#
FROM alpine:latest
LABEL maintainer "Jessie Frazelle <jess@linux.com>"
2018-06-20 13:30:36 +02:00
RUN apk add --no-cache --virtual \
busybox-extras
ENTRYPOINT [ "telnet" ]