FROM node:lts

WORKDIR /usr/src/app

COPY ./ /usr/src/app
RUN npm install
RUN ls -al .
RUN ls -al /bin

CMD [ "/bin/bash" ]