node-iglook/Dockerfile

6 lines
124 B
Docker
Raw Permalink Normal View History

2019-05-30 01:36:14 +00:00
FROM node:lts-alpine
WORKDIR /data
COPY . .
RUN apk add --no-cache curl ca-certificates && npm install
CMD ["npm", "start"]