Files
docker-socat/Dockerfile

8 lines
193 B
Docker
Raw Normal View History

2024-02-28 14:51:27 +02:00
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"]