FROM node
WORKDIR /usr/src/app

COPY . ./

# building the app
RUN npm i -f
RUN npm run build

# Running the app
CMD [ "npm", "start" ]