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

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -2
Dockerfile CHANGED
@@ -1,8 +1,7 @@
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
 
1
  FROM node:23-alpine
2
  WORKDIR /app
3
  RUN chmod 777 /app
 
4
  COPY . .
5
  RUN npm init -y
6
+ RUN npm install @modelcontextprotocol/sdk axios @mozilla/readability jsdom turndown express
7
  CMD npm start