8 lines
166 B
Text
8 lines
166 B
Text
|
|
FROM node:22-slim
|
||
|
|
|
||
|
|
RUN npm install -g mcp-proxy@6.5.2 mcp-postgres@1.3.0
|
||
|
|
|
||
|
|
EXPOSE 8109
|
||
|
|
|
||
|
|
CMD ["mcp-proxy", "--port", "8109", "--host", "0.0.0.0", "--", "mcp-postgres"]
|