2ch commited on
Commit
006d892
·
verified ·
1 Parent(s): f5197d6

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +7 -2
Dockerfile CHANGED
@@ -1,3 +1,8 @@
1
  FROM node:23-alpine
2
- RUN npm install server-moz-readability
3
- CMD server-moz-readability
 
 
 
 
 
 
1
  FROM node:23-alpine
2
+ WORKDIR /app
3
+ RUN chmod 777 /app
4
+ RUN mkdir -p /.cache && chmod 777 /.cache
5
+ COPY . .
6
+ RUN npm init -y
7
+ RUN npm install @modelcontextprotocol/sdk axios @mozilla/readability jsdom turndown
8
+ CMD npm start