FROM node:slim WORKDIR /app COPY . . EXPOSE 7860 RUN apt update -y &&\ npm install CMD ["node", "index.js"]