commit c090c56e38443663740e40c397d130d6c578e341 Author: conky Date: Wed Feb 28 14:51:27 2024 +0200 Initial commit diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..4b82df4 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,7 @@ +FROM debian:latest + +RUN apt-get update && \ + apt-get install -y socat && \ + rm -rf /var/lib/apt/lists/* + +CMD ["socat", "-v", "udp-l:1235,fork,bind=fly-global-services", "exec: /bin/cat"]