소스 검색

Added Dockerfile for Kutt

Eamon Bauman 8 년 전
부모
커밋
56fcf9f439
1개의 변경된 파일7개의 추가작업 그리고 0개의 파일을 삭제
  1. 7 0
      Dockerfile

+ 7 - 0
Dockerfile

@@ -0,0 +1,7 @@
+FROM node:9.5.0-alpine
+
+ADD . /code
+WORKDIR /code
+RUN npm install
+RUN npm run build
+CMD ["npm", "start"]