Add Dockerfile

This commit is contained in:
2023-08-15 07:22:09 +00:00
commit 293569f715

9
Dockerfile Normal file
View File

@ -0,0 +1,9 @@
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"]