Files
linuxkit/projects/demo/dockerfiles/Dockerfile.socat
2017-04-07 15:43:03 +01:00

9 lines
179 B
Docker

# A dockerfile to build a socat container
#
# It sets the environment to talk to the local cluster
FROM alpine:edge
RUN apk add --no-cache socat
ENTRYPOINT [ "/usr/bin/socat" ]