docker-socat/Dockerfile

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