commit 293569f7152d22ba03422d04d7c8b3deedfc071d Author: Bohdan Konkevych Date: Tue Aug 15 07:22:09 2023 +0000 Add Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..5d43936 --- /dev/null +++ b/Dockerfile @@ -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"] \ No newline at end of file