1tbfree commited on
Commit
8db729c
·
verified ·
1 Parent(s): 67933f4

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +7 -0
Dockerfile ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ FROM node:20
2
+ WORKDIR /bots/this/
3
+ COPY . .
4
+ RUN npm install socket.io-client@2
5
+ RUN echo node bomb.js > init
6
+ RUN chmod +x init
7
+ CMD "./init"