Reaperxxxx commited on
Commit
ea2f6bd
·
verified ·
1 Parent(s): f526cb6

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -1,7 +1,7 @@
1
  FROM node:22
2
  WORKDIR /app
3
- RUN git clone https://github.com/reaperofssa/exile.git .
4
- RUN npm install multer uuid dotenv jsonwebtoken express ws socket.io mongodb geoip-lite cookie-parser form-data axios
5
  RUN chmod -R 777 /app
6
  EXPOSE 7860
7
  CMD ["node", "server.js"]
 
1
  FROM node:22
2
  WORKDIR /app
3
+ COPY . .
4
+ RUN npm install express axios cors multer fs-extra
5
  RUN chmod -R 777 /app
6
  EXPOSE 7860
7
  CMD ["node", "server.js"]