Selaa lähdekoodia

add Dockerfile

zhangweicheng 8 vuotta sitten
vanhempi
commit
291e063992
1 muutettua tiedostoa jossa 13 lisäystä ja 0 poistoa
  1. 13 0
      Dockerfile

+ 13 - 0
Dockerfile

@@ -0,0 +1,13 @@
+FROM server:2.0
+
+COPY . ConstructionCost
+
+WORKDIR ConstructionCost
+
+RUN cnpm install 
+
+EXPOSE 6060
+
+ENTRYPOINT babel-node server.js
+
+