FROM python:3.10 WORKDIR /home/user/app # Copy everything into the container COPY . . # Run install.sh explicitly RUN chmod +x install.sh && ./install.sh # Expose port (for Gradio or Streamlit) EXPOSE 7860 # Start the app CMD ["python", "app.py"]