saicharan1234 commited on
Commit
6221c5e
·
verified ·
1 Parent(s): 4d2a85c

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +6 -0
Dockerfile CHANGED
@@ -34,6 +34,12 @@ RUN curl -sL https://deb.nodesource.com/setup_14.x | bash - && \
34
  apt-get install -y nodejs && \
35
  npm install -g configurable-http-proxy
36
 
 
 
 
 
 
 
37
  # Create a working directory
38
  WORKDIR /app
39
 
 
34
  apt-get install -y nodejs && \
35
  npm install -g configurable-http-proxy
36
 
37
+ # Install cloudflared
38
+ RUN wget https://github.com/cloudflare/cloudflared/releases/latest/download/cloudflared-linux-amd64.deb && \
39
+ dpkg -i cloudflared-linux-amd64.deb && \
40
+ rm cloudflared-linux-amd64.deb
41
+
42
+
43
  # Create a working directory
44
  WORKDIR /app
45