mirror of
https://github.com/yusing/godoxy.git
synced 2025-05-20 12:42:34 +02:00
10 lines
281 B
Docker
10 lines
281 B
Docker
FROM debian:stable-slim
|
|
|
|
RUN apt update && \
|
|
apt install -y netcat-openbsd && \
|
|
rm -rf /var/lib/apt/lists/*
|
|
|
|
RUN printf '#!/bin/bash\nclear; echo "Netcat UDP server started"; nc -u -l 9999; exit' >> /entrypoint.sh
|
|
RUN chmod +x /entrypoint.sh
|
|
|
|
ENTRYPOINT ["/entrypoint.sh"]
|