File size: 182 Bytes
829ccac
006d892
 
 
 
2214bff
006d892
1
2
3
4
5
6
7
FROM node:23-alpine
WORKDIR /app
RUN chmod 777 /app
COPY . .
RUN npm init -y
RUN npm install @modelcontextprotocol/sdk axios @mozilla/readability jsdom turndown express
CMD npm start