1tbfree commited on
Commit
d8a0edc
·
verified ·
1 Parent(s): f2b2d33

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +6 -0
Dockerfile ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ FROM node:20
2
+ WORKDIR /app
3
+ RUN npm i socket.io-server@2
4
+ RUN chmod +777 ./
5
+ RUN echo node index.js > start.sh
6
+ CMD "./start.sh"