Spaces:
Running
Running
Update Dockerfile
Browse files- Dockerfile +3 -1
Dockerfile
CHANGED
@@ -58,5 +58,7 @@ RUN pip3 install --no-cache --upgrade --break-system-packages pip pexpect setup
|
|
58 |
# to run on container start
|
59 |
RUN git clone https://github.com/AIGENHACKER/mcp-hfspace && cd mcp-hfspace && npm install && npm run build && npm link
|
60 |
RUN git clone https://github.com/exa-labs/exa-mcp-server && cd exa-mcp-server && npm install --save axios dotenv && npm run build && npm link
|
61 |
-
RUN wget https://bin.equinox.io/c/bNyj1mQVY4c/ngrok-v3-stable-linux-amd64.tgz -O ngrok.tgz && tar xvzf ngrok.tgz && cp ngrok /usr/local/bin && rm ngrok.tgz
|
|
|
|
|
62 |
CMD ["npm", "run", "backend"]
|
|
|
58 |
# to run on container start
|
59 |
RUN git clone https://github.com/AIGENHACKER/mcp-hfspace && cd mcp-hfspace && npm install && npm run build && npm link
|
60 |
RUN git clone https://github.com/exa-labs/exa-mcp-server && cd exa-mcp-server && npm install --save axios dotenv && npm run build && npm link
|
61 |
+
RUN wget https://bin.equinox.io/c/bNyj1mQVY4c/ngrok-v3-stable-linux-amd64.tgz -O ngrok.tgz && tar xvzf ngrok.tgz && cp ngrok /usr/local/bin && rm ngrok.tgz
|
62 |
+
USER node
|
63 |
+
RUN ngrok config add-authtoken 1rQyCAEayMQPbF92tUV79xzU47t_52jLQDywBZLtLzqYuDAK2
|
64 |
CMD ["npm", "run", "backend"]
|