akiko19191 commited on
Commit
e48bcbb
·
verified ·
1 Parent(s): 3617472

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -5
Dockerfile CHANGED
@@ -73,10 +73,6 @@ RUN apk add --no-cache --virtual .build-deps \
73
  pexpect && \
74
  # (Add back commented packages here if needed, e.g., actors-mcp-server)
75
  echo "Pip install finished. Cleaning up..." && \
76
- # Install ngrok
77
- # Configure ngrok (token ideally passed at runtime or via build arg)
78
- ngrok config add-authtoken $NGROK_AUTHTOKEN && \
79
- # Clean up build dependencies and apk cache
80
  apk del .build-deps && \
81
  rm -rf /var/cache/apk/* /root/.cache /tmp/* && \
82
  echo "Cleanup finished."
@@ -90,7 +86,7 @@ RUN git clone https://github.com/exa-labs/exa-mcp-server && cd exa-mcp-server
90
 
91
  USER node
92
  # Set the working directory (good practice)
93
-
94
 
95
  # Expose the port the app runs on
96
  EXPOSE 7860
 
73
  pexpect && \
74
  # (Add back commented packages here if needed, e.g., actors-mcp-server)
75
  echo "Pip install finished. Cleaning up..." && \
 
 
 
 
76
  apk del .build-deps && \
77
  rm -rf /var/cache/apk/* /root/.cache /tmp/* && \
78
  echo "Cleanup finished."
 
86
 
87
  USER node
88
  # Set the working directory (good practice)
89
+ ngrok config add-authtoken $NGROK_AUTHTOKEN
90
 
91
  # Expose the port the app runs on
92
  EXPOSE 7860