# Generated by https://smithery.ai. See: https://smithery.ai/docs/config#dockerfile
# Use an official Node.js runtime as a parent image
FROM node:18-alpine AS build
# Set the working directory
WORKDIR /app
# Copy the current directory contents into the container at /app
COPY . .
# Install any needed packages
RUN npm install
# Compile the TypeScript code
RUN npm run build
# Use a smaller Node.js runtime for the release build
FROM node:18-alpine AS release
# Set the working directory
WORKDIR /app
# Copy compiled files from the build image
COPY --from=build /app/build /app/build
# Copy necessary package.json files
COPY --from=build /app/package.json /app/package-lock.json /app/
# Install only production dependencies
RUN npm install --omit=dev --ignore-scripts
# Make port 8080 available to the world outside this container
EXPOSE 8080
# Run the server
ENTRYPOINT ["node", "build/index.js"]
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/themindmod/selenium-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server