udptunnel-docker/Dockerfile
2025-06-28 11:58:50 -07:00

5 lines
No EOL
138 B
Docker

FROM debian:latest
WORKDIR /usr/src/app
RUN apt update && apt install udptunnel -y
COPY init.sh /bin/init.sh
CMD [ "/bin/bash", "init.sh"]