node-fblook/Dockerfile
2018-09-24 00:07:40 +08:00

6 lines
122 B
Docker

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