Files
2019-05-30 09:36:14 +08:00

6 lines
124 B
Docker

FROM node:lts-alpine
WORKDIR /data
COPY . .
RUN apk add --no-cache curl ca-certificates && npm install
CMD ["npm", "start"]