Arkm20 commited on
Commit
0b803d1
·
verified ·
1 Parent(s): 7a8fc70

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +12 -0
Dockerfile ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM node:18-slim
2
+ WORKDIR /app
3
+
4
+ # Install dependencies
5
+ COPY package*.json ./
6
+ RUN npm ci --production
7
+
8
+ # Copy bot code
9
+ COPY . .
10
+
11
+ # Launch the keep-alive loop
12
+ CMD ["node", "index.js"]