This commit is contained in:
Jay
2018-09-24 00:07:40 +08:00
commit e9d4d30f57
8 changed files with 2571 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
FROM node:8-alpine
RUN apk add --no-cache curl ca-certificates
WORKDIR /data
COPY . .
RUN npm install
CMD ["npm", "start"]