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