mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2024-11-23 19:32:30 +01:00
13 lines
239 B
Docker
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" ]
|