udphole

Basic UDP wormhole proxy
git clone git://git.finwo.net/app/udphole
Log | Files | Refs | README | LICENSE

Dockerfile (240B)


      1 ARG VERSION=latest
      2 
      3 FROM busybox:latest
      4 
      5 ARG TARGETARCH
      6 
      7 COPY udphole-linux-${TARGETARCH} /usr/bin/udphole
      8 RUN chmod +x /usr/bin/udphole
      9 
     10 COPY entrypoint.sh /etc/rc.local
     11 RUN chmod +x /etc/rc.local
     12 
     13 ENTRYPOINT ["/bin/ash", "/etc/rc.local"]