angeloqq commited on
Commit
ed4ad61
·
verified ·
1 Parent(s): 8c8e3e2

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +6 -2
Dockerfile CHANGED
@@ -20,8 +20,12 @@ RUN apt-get update && \
20
  apt-get install -y curl && \
21
  apt-get clean
22
 
23
- # Install Ngrok using curl
24
- RUN curl -o ngrok.zip https://bin.equinox.io/c/4VmDzA7iaHb/ngrok-stable-linux-amd64.zip && \
 
 
 
 
25
  unzip ngrok.zip && \
26
  mv ngrok /usr/local/bin/ngrok && \
27
  rm ngrok.zip
 
20
  apt-get install -y curl && \
21
  apt-get clean
22
 
23
+ # Download ngrok using curl
24
+ RUN curl -o ngrok.zip https://bin.equinox.io/c/4VmDzA7iaHb/ngrok-stable-linux-amd64.zip
25
+
26
+ # Install unzip and unzip ngrok
27
+ RUN apt-get update && \
28
+ apt-get install -y unzip && \
29
  unzip ngrok.zip && \
30
  mv ngrok /usr/local/bin/ngrok && \
31
  rm ngrok.zip