Payload CMS MCP Server

MIT License
5
  • Linux
  • Apple
# Generated by https://smithery.ai. See: https://smithery.ai/docs/config#dockerfile FROM node:18-alpine # Create app directory WORKDIR /app # Copy package.json and pnpm-lock.yaml COPY package.json pnpm-lock.yaml ./ # Install pnpm RUN npm install -g pnpm # Install dependencies RUN pnpm install --no-frozen-lockfile # Copy the rest of the application COPY . . # Expose the port the app runs on EXPOSE 8080 # Command to run the application CMD ["node", "server.js"]