FROM node:14 WORKDIR /code COPY package.json /code/package.json RUN npm install COPY . . EXPOSE 7860 CMD ["node", "main.js"]