Files
kubernetes/contrib/for-demos/proxy-to-service/Dockerfile
2015-06-30 18:49:59 -07:00

10 lines
317 B
Docker

# Alpine linux would be great for this, but it's DNS does not use seach paths.
FROM progrium/busybox
MAINTAINER Tim Hockin "thockin@google.com"
RUN opkg-install socat
ADD start.sh start.sh
# Usage: docker run -p <host-port>:<port> <this-container> <tcp|udp> <port> <service-name> [timeout]
ENTRYPOINT ["/start.sh"]