node-fblook/Dockerfile

6 lines
122 B
Docker
Raw Permalink Normal View History

2018-09-23 16:07:40 +00:00
FROM node:8-alpine
RUN apk add --no-cache curl ca-certificates
WORKDIR /data
COPY . .
RUN npm install
CMD ["npm", "start"]