Files
docker-tcp-proxy/Dockerfile

9 lines
157 B
Docker
Raw Normal View History

2023-08-15 07:22:09 +00:00
FROM alpine:3.18.2
RUN apk add --update bash socat
COPY tcp-proxy.sh /usr/bin/tcp-proxy
RUN chmod +x /usr/bin/tcp-proxy
ENTRYPOINT ["/usr/bin/tcp-proxy"]