server-puppeteer / Dockerfile
davidberenstein1957's picture
Update Dockerfile
276fff1 verified
raw
history blame
268 Bytes
FROM node:14
# Create app directory
WORKDIR /usr/src/app
# Install the server-memory package
RUN npx -y @modelcontextprotocol/server-memory
# Expose the port the app runs on
EXPOSE 3000
# Command to run the server
CMD ["npx", "@modelcontextprotocol/server-memory"]