FROM node:18 WORKDIR /app COPY package.json . COPY index.js . COPY start.sh . RUN npm install RUN chmod +x start.sh EXPOSE 7860 CMD ["/app/start.sh"]