Browse Source

add Dockerfile

zhangweicheng 8 năm trước cách đây
mục cha
commit
291e063992
1 tập tin đã thay đổi với 13 bổ sung0 xóa
  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
+
+