Sfoglia il codice sorgente

Dockerfile hinzugefügt

Alexander Vornam 3 anni fa
parent
commit
4fc847b5ff
1 ha cambiato i file con 6 aggiunte e 0 eliminazioni
  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"]