node-fblook/Dockerfile

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"]