FROM node:latest WORKDIR /code COPY ./package.json /code/package.json RUN npm install COPY . . CMD ["node", "app.js", "--port", "7860"]