add dockerfile and drone config

This commit is contained in:
Jay
2019-05-30 09:36:14 +08:00
parent 2c1c61fb48
commit 7bf70f2ae1
2 changed files with 14 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
FROM node:lts-alpine
WORKDIR /data
COPY . .
RUN apk add --no-cache curl ca-certificates && npm install
CMD ["npm", "start"]