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