aminaj commited on
Commit
8f180ab
·
verified ·
1 Parent(s): 0952111

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -2
Dockerfile CHANGED
@@ -21,8 +21,9 @@ RUN apt-get update && apt-get install -y wget unzip
21
  RUN wget https://bin.equinox.io/c/4VmDzA7iaHb/ngrok-stable-linux-amd64.zip
22
  RUN unzip ngrok-stable-linux-amd64.zip -d /home/ngrok
23
 
24
- # Set ngrok authtoken
25
- RUN /home/ngrok/ngrok authtoken 2b4yAiTmpacHDqRT8mlaIdwnbFJ_2zkZKS7XQVPQb5GWVwUew
 
26
 
27
  WORKDIR /app
28
 
 
21
  RUN wget https://bin.equinox.io/c/4VmDzA7iaHb/ngrok-stable-linux-amd64.zip
22
  RUN unzip ngrok-stable-linux-amd64.zip -d /home/ngrok
23
 
24
+ # Set ngrok authtoken from environment variable
25
+ ENV NGROK_AUTHTOKEN=$NGROK_AUTHTOKEN
26
+ RUN /home/ngrok/ngrok authtoken $NGROK_AUTHTOKEN
27
 
28
  WORKDIR /app
29