FROM node:20 WORKDIR /app RUN chmod -R 777 /app \ && apt-get update && apt-get install -y git COPY start.sh /start.sh RUN chmod +x /start.sh EXPOSE 7860 CMD ["/start.sh"]