FROM node:22-slim
RUN apt-get update && apt-get install -y --no-install-recommends \
git \
ca-certificates \
&& rm -rf /var/lib/apt/lists/*
RUN mkdir /repomix
WORKDIR /repomix
# Install dependencies and build repomix, then link the package to the global scope
# To reduce the size of the layer, npm ci and npm link are executed in the same RUN command
COPY . .
RUN npm ci \
&& npm run build \
&& npm link \
&& npm ci --omit=dev \
&& npm cache clean --force
WORKDIR /app
# Check the operation of repomix
RUN repomix --version
RUN repomix --help
ENTRYPOINT ["repomix"]
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/yamadashy/repomix'
If you have feedback or need assistance with the MCP directory API, please join our Discord server