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