Add Dockerfile

main
Bohdan Konkevych 2023-08-15 07:22:09 +00:00
commit 293569f715
1 changed files with 9 additions and 0 deletions

9
Dockerfile 100644
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"]