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
24
24
RUN chmod a+x /usr/local/bin/*
25
25
26
26
# 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
29
31
COPY start.sh /
30
32
COPY mailing/* /mailing/
31
33
RUN yarn --cwd /mailing
Original file line number Diff line number Diff line change 1
1
#! /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 &
4
4
sleep 3
5
5
export NGROK_URL=" $( curl http://localhost:4040/api/tunnels | jq " .tunnels[0].public_url" ) "
6
6
echo --------------------
You can’t perform that action at this time.
0 commit comments