Nidabot commited on
Commit
3a39bbe
·
verified ·
1 Parent(s): 3e4a88d

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +11 -1
Dockerfile CHANGED
@@ -1,5 +1,15 @@
1
  FROM quay.io/lyfe00011/md:beta
 
 
 
2
  RUN git clone https://github.com/lyfe00011/levanter.git /root/LyFE/
 
3
  WORKDIR /root/LyFE/
4
- RUN yarn install
 
 
 
 
 
 
5
  CMD ["npm", "start"]
 
1
  FROM quay.io/lyfe00011/md:beta
2
+
3
+ user node
4
+
5
  RUN git clone https://github.com/lyfe00011/levanter.git /root/LyFE/
6
+
7
  WORKDIR /root/LyFE/
8
+
9
+ RUN yarn install && yarn add http
10
+
11
+ COPY server.js .
12
+
13
+ COPY start.sh .
14
+
15
  CMD ["npm", "start"]