Skip to main content
Glama

mcp-adr-analysis-server

by tosin2013
Dockerfile850 B
# Multi-stage Dockerfile for Docusaurus documentation # Stage 1: Build the documentation FROM node:20-alpine AS builder WORKDIR /app # Copy package files COPY package*.json ./ # Install dependencies RUN npm ci # Copy source files COPY . . # Build the static site RUN npm run build # Stage 2: Serve with nginx FROM nginx:alpine AS production # Copy built files from builder stage COPY --from=builder /app/build /usr/share/nginx/html # Copy custom nginx configuration COPY nginx.conf /etc/nginx/conf.d/default.conf EXPOSE 80 CMD ["nginx", "-g", "daemon off;"] # Stage 3: Development server FROM node:20-alpine AS development WORKDIR /app # Copy package files COPY package*.json ./ # Install dependencies RUN npm install # Copy source files COPY . . EXPOSE 3000 CMD ["npm", "run", "start", "--", "--host", "0.0.0.0", "--port", "3000"]

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/tosin2013/mcp-adr-analysis-server'

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