| FROM node:23-alpine | |
| WORKDIR /app | |
| RUN chmod 777 /app | |
| RUN mkdir -p /.cache && chmod 777 /.cache | |
| COPY . . | |
| RUN npm init -y | |
| RUN npm install @modelcontextprotocol/sdk axios @mozilla/readability jsdom turndown | |
| CMD npm start |
| FROM node:23-alpine | |
| WORKDIR /app | |
| RUN chmod 777 /app | |
| RUN mkdir -p /.cache && chmod 777 /.cache | |
| COPY . . | |
| RUN npm init -y | |
| RUN npm install @modelcontextprotocol/sdk axios @mozilla/readability jsdom turndown | |
| CMD npm start |