Create Dockerfile
Browse files- 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"]
|