Reaperxxxx commited on
Commit
f1046eb
·
verified ·
1 Parent(s): ff620ce

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +8 -0
Dockerfile ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ FROM node:22
2
+ WORKDIR /app
3
+ RUN apk add --no-cache git
4
+ RUN git clone https://github.com/reaperofssa/exile.git .
5
+ RUN npm install multer uuid dotenv jsonwebtoken express ws mongodb geoip-lite cookie-parser form-data axios
6
+ RUN chmod -R 777 /app
7
+ EXPOSE 3000
8
+ CMD ["node", "server.js"]