We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/marchi-lau/mcp-airtable'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
Dockerfile.base•926 B
# Base Dockerfile - shared across all deployments
FROM node:18-alpine AS builder
# Install build dependencies
RUN apk add --no-cache python3 make g++
WORKDIR /app
# Copy package files
COPY package*.json ./
COPY tsconfig.json ./
# Install dependencies
RUN npm ci
# Copy source code
COPY src ./src
# Build the application
RUN npm run build
# Production stage
FROM node:18-alpine AS production
# Install runtime dependencies
RUN apk add --no-cache tini curl
WORKDIR /app
# Copy package files
COPY package*.json ./
# Install production dependencies only
RUN npm ci --only=production && \
npm cache clean --force
# Copy built application
COPY --from=builder /app/dist ./dist
# Create non-root user
RUN addgroup -g 1001 -S nodejs && \
adduser -S nodejs -u 1001
USER nodejs
# Use tini for proper signal handling
ENTRYPOINT ["/sbin/tini", "--"]
# Note: CMD should be specified in deployment-specific Dockerfiles