Update Dockerfile
Browse files- Dockerfile +7 -2
Dockerfile
CHANGED
|
@@ -1,3 +1,8 @@
|
|
| 1 |
FROM node:23-alpine
|
| 2 |
-
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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
|