BetaBots commited on
Commit
fc553c0
·
verified ·
1 Parent(s): b13d710

Create Documentinfo

Browse files
Files changed (1) hide show
  1. Documentinfo +24 -0
Documentinfo ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM node:20
2
+
3
+
4
+ USER node
5
+
6
+
7
+ RUN git clone https://github.com/hakisolos/nikka-v3.2 home/node/blue
8
+
9
+
10
+ WORKDIR /home/node/blue
11
+
12
+
13
+ RUN chmod -R 777 /home/node/blue/
14
+
15
+
16
+ RUN yarn install && yarn add http
17
+
18
+
19
+ COPY server.js .
20
+
21
+
22
+ COPY start.sh .
23
+
24
+ CMD [ "bash" , "start.sh" ]