MCPs/web-search/Dockerfile
Tobias J. Endres f0a5899cfe
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
fix: use python:3.12-slim base for Python MCPs (nc-mcp-server needs 3.12+)
2026-06-23 15:37:45 +02:00

5 lines
No EOL
309 B
Docker

FROM python:3.12-slim
RUN apt-get update && apt-get install -y --no-install-recommends nodejs npm && rm -rf /var/lib/apt/lists/*
RUN pip install --no-cache-dir web-researcher-mcp && npm install -g mcp-proxy@6.5.2
EXPOSE 8116
CMD ["mcp-proxy", "--port", "8116", "--host", "0.0.0.0", "--", "web-researcher-mcp"]