FROM node:20-bullseye WORKDIR /app COPY package*.json ./ RUN npm install COPY . . ENV PORT=7860 EXPOSE 7860 CMD ["node", "src/api_only.js"]