We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/acquo/line-bot-mcp-server-sse'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
Dockerfile•1.22 kB
FROM node:22.16-alpine AS builder
COPY . /app
WORKDIR /app
RUN npm ci --ignore-scripts --omit-dev
RUN npm run build
# --- Release Stage ---
FROM node:22-alpine AS release
# Set up a non-root user ('appuser'/'appgroup') to avoid running as root - good security practice!
# (-S is the Alpine option for a system user/group, suitable here)
RUN addgroup -S appgroup && adduser -S appuser -G appgroup
# Copy the built code and necessary package files from our builder stage
COPY --from=builder /app/dist /app/dist
COPY --from=builder /app/package.json /app/package.json
COPY --from=builder /app/package-lock.json /app/package-lock.json
ENV NODE_ENV=production
WORKDIR /app
# Give our new 'appuser' ownership of the application files inside /app
# Needs to happen after copying the files over
RUN chown -R appuser:appgroup /app
# Install *only* the production dependencies
RUN npm ci --ignore-scripts --omit-dev
# Now, switch to running as our non-root user for the actual app process
USER appuser
# Expose port for SSE transport (default: 3000)
EXPOSE 3000
# Environment variables for configuration
ENV MCP_TRANSPORT=sse
ENV MCP_PORT=3000
# Define how to start the application
ENTRYPOINT ["node", "dist/index.js"]