Update Dockerfile
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
|
@@ -1,7 +1,7 @@
|
|
| 1 |
FROM node:20-slim
|
| 2 |
WORKDIR /app
|
| 3 |
COPY . .
|
| 4 |
-
RUN npm install
|
| 5 |
RUN chmod -R 777 /app
|
| 6 |
EXPOSE 7860
|
| 7 |
CMD ["node", "index.js"]
|
|
|
|
| 1 |
FROM node:20-slim
|
| 2 |
WORKDIR /app
|
| 3 |
COPY . .
|
| 4 |
+
RUN npm install express
|
| 5 |
RUN chmod -R 777 /app
|
| 6 |
EXPOSE 7860
|
| 7 |
CMD ["node", "index.js"]
|