ecommerce-website/Dockerfile

9 lines
108 B
Docker

FROM node:14.10.1
WORKDIR /app
COPY package*.json ./
RUN npm install
CMD ["npm", "run", "start"]