Create Dockerfile
Browse files- Dockerfile +8 -0
Dockerfile
ADDED
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
|
2 |
+
FROM quay.io/suhailtechinfo/suhail-v2
|
3 |
+
RUN git clone https://github.com/SuhailTechInfo/Suhail-Md-3 /root/smdd
|
4 |
+
RUN rm -rf /root/smdd/.git
|
5 |
+
WORKDIR /root/smdd
|
6 |
+
RUN npm install || yarn install
|
7 |
+
EXPOSE 8000
|
8 |
+
CMD ["npm","start" ]
|