Files
docker-socat/Dockerfile
2024-02-28 14:51:27 +02:00

8 lines
193 B
Docker

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"]