Spaces:
Running
Running
Update Dockerfile
Browse files- 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 |
|