mirror of
https://github.com/lush2020/edgetunnel.git
synced 2026-03-21 08:52:43 +08:00
11 lines
253 B
Docker
11 lines
253 B
Docker
FROM v2fly/v2fly-core:latest
|
|
|
|
RUN wget https://github.com/cloudflare/cloudflared/releases/latest/download/cloudflared-linux-amd64 -O /root/cloudflared
|
|
RUN chmod +x /root/cloudflared
|
|
ADD startup.sh /startup.sh
|
|
RUN chmod +x /startup.sh
|
|
|
|
CMD /startup.sh
|
|
|
|
|