Ver Fonte

Dockerfile hinzugefügt

Alexander Vornam há 3 anos atrás
pai
commit
4fc847b5ff
1 ficheiros alterados com 6 adições e 0 exclusões
  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"]