File size: 268 Bytes
276fff1
9737764
276fff1
 
9737764
276fff1
 
9737764
276fff1
 
9737764
276fff1
 
1
2
3
4
5
6
7
8
9
10
11
12
13
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"]