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