18 lines
502 B
Docker
18 lines
502 B
Docker
FROM docker.io/nikolaik/python-nodejs:python3.14-nodejs26-slim
|
|
|
|
# System dependencies
|
|
RUN apt-get update && apt-get install -y curl && rm -rf /var/lib/apt/lists/*
|
|
|
|
# Application dependencies
|
|
RUN pip install --no-cache-dir mcp-proxy
|
|
RUN npm install -g mcp-searxng
|
|
|
|
# Default environment variables
|
|
ENV SEARXNG_URL=http://tool-searchfetch-searxng:8080
|
|
ENV MCP_HOST=0.0.0.0
|
|
ENV MCP_PORT=3000
|
|
|
|
ENTRYPOINT ["mcp-proxy"]
|
|
|
|
CMD ["--host", "0.0.0.0", "--port", "3000", "--pass-environment", "--", "mcp-searxng"]
|