-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
9 lines (9 loc) · 753 Bytes
/
Dockerfile
File metadata and controls
9 lines (9 loc) · 753 Bytes
1
2
3
4
5
6
7
8
9
FROM debian:bookworm-slim
ENV DEBIAN_FRONTEND=noninteractive \
GLAMA_VERSION="1.0.0" \
PYTHONUNBUFFERED=1
RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates curl git && curl -fsSL https://deb.nodesource.com/setup_24.x | bash - && apt-get install -y --no-install-recommends nodejs && npm install -g mcp-proxy@6.4.3 pnpm@10.14.0 && node --version && curl -LsSf https://astral.sh/uv/install.sh | UV_INSTALL_DIR="/usr/local/bin" sh && uv python install 3.14 --default --preview && ln -s $(uv python find) /usr/local/bin/python && python --version && apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
WORKDIR /app
COPY . .
RUN (pnpm install) && (pnpm run build)
CMD ["mcp-proxy","--","node","./dist/mcp.js"]