angeloqq commited on
Commit
8af28a0
·
verified ·
1 Parent(s): a946b4c

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -26,8 +26,8 @@ RUN curl -o ngrok.zip https://bin.equinox.io/c/4VmDzA7iaHb/ngrok-stable-linux-am
26
  mv ngrok /usr/local/bin/ngrok && \
27
  rm ngrok.zip
28
 
29
- # Set ngrok authentication token
30
- RUN echo "authtoken: 2e6JSMo1mBy4br3Zfkh5ZxjNi8k_7t1xRvVGdwSQhf4uUmTZp" > ~/.ngrok2/ngrok.yml
31
 
32
  # Command to run the application
33
  CMD ["sh", "-c", "ngrok http 8000 & python app/app.py"]
 
26
  mv ngrok /usr/local/bin/ngrok && \
27
  rm ngrok.zip
28
 
29
+ # Set the ngrok authentication token directly
30
+ RUN ngrok authtoken 2e6JSMo1mBy4br3Zfkh5ZxjNi8k_7t1xRvVGdwSQhf4uUmTZp
31
 
32
  # Command to run the application
33
  CMD ["sh", "-c", "ngrok http 8000 & python app/app.py"]