feedless/app/Dockerfile

7 lines
93 B
Docker

FROM node
COPY package.json package-lock.json ./
RUN npm install
COPY . .
CMD npm run start