- Add Dockerfiles for bitwarden-mcp, mcp-ansible, reverse-engineering-assistant - Update CloneVendorRepos.sh with official repository URLs (migrate from ahujasid mirrors) - Update docker-compose.yml with new services and reorganization - Update STATUS.md with current operational status of all MCP servers - Update AGENTS.md with webserial-mcp and terraform-ls documentation - Add journal entries for recent work (ADRs, insights, patterns) 💔 Generated with Crush Assisted-by: GLM-5 via Crush <crush@charm.land>
15 lines
335 B
Docker
15 lines
335 B
Docker
FROM node:22-slim
|
|
|
|
WORKDIR /app
|
|
|
|
# Install dependencies for running npx
|
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
|
ca-certificates \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
# Set up environment
|
|
ENV NODE_ENV=production
|
|
|
|
# The Bitwarden MCP server is run via npx
|
|
ENTRYPOINT ["npx", "-y", "@bitwarden/mcp-server"]
|