privateone commited on
Commit
5c1b9aa
·
verified ·
1 Parent(s): 75a759d

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +8 -0
Dockerfile CHANGED
@@ -14,6 +14,14 @@ USER root
14
 
15
  RUN apt update \
16
  && apt install ngrok openssl curl bash
 
 
 
 
 
 
 
 
17
 
18
  # Install socat and openssl for certificate generation
19
  # RUN apk add --no-cache socat openssl
 
14
 
15
  RUN apt update \
16
  && apt install ngrok openssl curl bash
17
+
18
+ RUN curl -sSL https://ngrok-agent.s3.amazonaws.com/ngrok.asc \
19
+ | tee /etc/apt/trusted.gpg.d/ngrok.asc >/dev/null \
20
+ && echo "deb https://ngrok-agent.s3.amazonaws.com buster main" \
21
+ | tee /etc/apt/sources.list.d/ngrok.list \
22
+ && apt-get update \
23
+ && apt-get install -y ngrok \
24
+ && rm -rf /var/lib/apt/lists/*
25
 
26
  # Install socat and openssl for certificate generation
27
  # RUN apk add --no-cache socat openssl