read / Dockerfile
2ch's picture
Update Dockerfile
006d892 verified
raw
history blame
216 Bytes
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