mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-11-01 02:45:14 +00:00
9 lines
179 B
Docker
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" ]
|