Browse Source

Dockerfile hinzugefügt

Alexander Vornam 3 năm trước cách đây
mục cha
commit
4fc847b5ff
1 tập tin đã thay đổi với 6 bổ sung0 xóa
  1. 6 0
      Dockerfile

+ 6 - 0
Dockerfile

@@ -0,0 +1,6 @@
+FROM node:9-slim
+WORKDIR /app
+COPY package.json ./app
+RUN npm install
+COPY . ./app
+CMD ["npm", "start"]