elmerzole commited on
Commit
4ce899f
·
verified ·
1 Parent(s): 77c0568

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -16
Dockerfile CHANGED
@@ -1,16 +1,3 @@
1
- FROM ghcr.io/sparfenyuk/mcp-proxy:latest
2
-
3
- # Install uv for Python package management
4
- RUN python3 -m ensurepip && pip install --no-cache-dir uv
5
-
6
- # Install Node.js and npm for npx-based servers
7
- RUN apk add --no-cache nodejs npm
8
-
9
- ENV PATH="/usr/local/bin:$PATH" \
10
- UV_PYTHON_PREFERENCE=only-system
11
-
12
- # Copy configuration file
13
- COPY servers.json /app/servers.json
14
-
15
- ENTRYPOINT ["catatonit", "--", "mcp-proxy"]
16
- CMD ["--port", "7860", "--host", "0.0.0.0", "--pass-environment", "--allow-origin", "*", "--named-server-config", "/app/servers.json"]
 
1
+ FROM ghcr.io/tbxark/mcp-proxy:latest
2
+ COPY config.json /config/config.json
3
+ CMD ["--config", "/config/config.json", "--expand-env"]