1
0
mirror of https://github.com/jessfraz/dockerfiles.git synced 2025-03-13 08:48:09 +01:00
Christian Koep fe8cb9e90f
fix telnet
2018-06-20 13:30:36 +02:00

13 lines
239 B
Docker

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