Update Dockerfile
Browse files- 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 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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"]
|