Update Dockerfile
Browse files- Dockerfile +3 -0
Dockerfile
CHANGED
|
@@ -21,6 +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 |
WORKDIR /app
|
| 25 |
|
| 26 |
# Create a non-privileged user that the app will run under.
|
|
|
|
| 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 NGROK_AUTHTOKEN
|
| 26 |
+
|
| 27 |
WORKDIR /app
|
| 28 |
|
| 29 |
# Create a non-privileged user that the app will run under.
|