Skip to main content
Glama
Dockerfile750 B
# Multi-stage build for DevContainer MCP Server development FROM node:18-bullseye # Install system dependencies RUN apt-get update && apt-get install -y \ git \ curl \ wget \ vim \ zsh \ docker.io \ && rm -rf /var/lib/apt/lists/* # Install Oh My Zsh RUN sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" || true # Install DevContainer CLI globally RUN npm install -g @devcontainers/cli # Set working directory WORKDIR /workspace # Copy package files COPY package*.json ./ # Install dependencies RUN npm install # Copy source code COPY . . # Build the application RUN npm run build # Set default shell to zsh SHELL ["/bin/zsh", "-c"] # Default command CMD ["sleep", "infinity"]

Latest Blog Posts

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/Siddhant-K-code/mcp-devcontainer'

If you have feedback or need assistance with the MCP directory API, please join our Discord server