FROM node:20 WORKDIR /app COPY ./ /app RUN npm install EXPOSE 7860 CMD [ "npm", "start" ]