File tree Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -24,8 +24,10 @@ ADD ./bin /usr/local/bin
2424RUN chmod a+x /usr/local/bin/*
2525
2626# Ngrok tunneling
27- RUN apk --no-cache add curl
28- RUN apk --no-cache add jq
27+ RUN apk --no-cache add curl jq unzip
28+ RUN curl -o ngrok-compressed.zip https://bin.equinox.io/c/4VmDzA7iaHb/ngrok-stable-linux-arm.zip
29+ RUN unzip ngrok-compressed.zip
30+ RUN chmod +x /ngrok
2931COPY start.sh /
3032COPY mailing/* /mailing/
3133RUN yarn --cwd /mailing
Original file line number Diff line number Diff line change 11#! /bin/bash
2- ./etc/openvpn/ ngrok authtoken $AUTHTOKEN
3- ./etc/openvpn/ ngrok tcp 1194 > /dev/null &
2+ ./ngrok authtoken $AUTHTOKEN
3+ ./ngrok tcp 1194 > /dev/null &
44sleep 3
55export NGROK_URL=" $( curl http://localhost:4040/api/tunnels | jq " .tunnels[0].public_url" ) "
66echo --------------------
You can’t perform that action at this time.
0 commit comments