mirror of
https://github.com/samanhappy/mcphub.git
synced 2025-12-24 02:39:19 -05:00
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: samanhappy <2755122+samanhappy@users.noreply.github.com>
58 lines
2.0 KiB
Docker
58 lines
2.0 KiB
Docker
FROM python:3.13-slim-bookworm AS base
|
|
|
|
COPY --from=ghcr.io/astral-sh/uv:latest /uv /uvx /bin/
|
|
|
|
RUN apt-get update && apt-get install -y curl gnupg git build-essential \
|
|
&& curl -fsSL https://deb.nodesource.com/setup_22.x | bash - \
|
|
&& apt-get install -y nodejs \
|
|
&& apt-get clean && rm -rf /var/lib/apt/lists/*
|
|
|
|
RUN npm install -g pnpm
|
|
|
|
ENV PNPM_HOME=/usr/local/share/pnpm
|
|
ENV PATH=$PNPM_HOME:$PATH
|
|
RUN mkdir -p $PNPM_HOME && \
|
|
pnpm add -g @amap/amap-maps-mcp-server @playwright/mcp@latest tavily-mcp@latest @modelcontextprotocol/server-github @modelcontextprotocol/server-slack
|
|
|
|
ARG INSTALL_EXT=false
|
|
RUN if [ "$INSTALL_EXT" = "true" ]; then \
|
|
ARCH=$(uname -m); \
|
|
if [ "$ARCH" = "x86_64" ]; then \
|
|
npx -y playwright install --with-deps chrome; \
|
|
else \
|
|
echo "Skipping Chrome installation on non-amd64 architecture: $ARCH"; \
|
|
fi; \
|
|
# Install Docker Engine (includes CLI and daemon) \
|
|
apt-get update && \
|
|
apt-get install -y ca-certificates curl iptables && \
|
|
install -m 0755 -d /etc/apt/keyrings && \
|
|
curl -fsSL https://download.docker.com/linux/debian/gpg -o /etc/apt/keyrings/docker.asc && \
|
|
chmod a+r /etc/apt/keyrings/docker.asc && \
|
|
echo "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.asc] https://download.docker.com/linux/debian bookworm stable" | tee /etc/apt/sources.list.d/docker.list > /dev/null && \
|
|
apt-get update && \
|
|
apt-get install -y docker-ce docker-ce-cli containerd.io && \
|
|
apt-get clean && rm -rf /var/lib/apt/lists/*; \
|
|
fi
|
|
|
|
RUN uv tool install mcp-server-fetch
|
|
|
|
WORKDIR /app
|
|
|
|
COPY package.json pnpm-lock.yaml ./
|
|
RUN pnpm install
|
|
|
|
COPY . .
|
|
|
|
# Download the latest servers.json from mcpm.sh and replace the existing file
|
|
RUN curl -s -f --connect-timeout 10 https://mcpm.sh/api/servers.json -o servers.json || echo "Failed to download servers.json, using bundled version"
|
|
|
|
RUN pnpm frontend:build && pnpm build
|
|
|
|
COPY entrypoint.sh /usr/local/bin/entrypoint.sh
|
|
RUN chmod +x /usr/local/bin/entrypoint.sh
|
|
|
|
EXPOSE 3000
|
|
|
|
ENTRYPOINT ["/usr/local/bin/entrypoint.sh"]
|
|
CMD ["pnpm", "start"]
|