Update Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
@@ -31,8 +31,8 @@ COPY --chown=user . $HOME/app
|
|
31 |
# Download ngrok v3 from the official website
|
32 |
RUN wget https://bin.equinox.io/c/4VmDzA7iaHb/ngrok-stable-linux-amd64.tgz -O /tmp/ngrok.tgz
|
33 |
|
34 |
-
# Extract ngrok binary to /usr/local/bin
|
35 |
-
RUN tar xvzf /tmp/ngrok.tgz -C /usr/local/bin && \
|
36 |
rm /tmp/ngrok.tgz
|
37 |
|
38 |
# Move ngrok binary to destination directory
|
|
|
31 |
# Download ngrok v3 from the official website
|
32 |
RUN wget https://bin.equinox.io/c/4VmDzA7iaHb/ngrok-stable-linux-amd64.tgz -O /tmp/ngrok.tgz
|
33 |
|
34 |
+
# Extract ngrok binary to /usr/local/bin with elevated permissions
|
35 |
+
RUN sudo tar xvzf /tmp/ngrok.tgz -C /usr/local/bin && \
|
36 |
rm /tmp/ngrok.tgz
|
37 |
|
38 |
# Move ngrok binary to destination directory
|