# Use an official Python image FROM langchain/langchain # Set working directory WORKDIR /app # Copy your app files COPY requirements.txt requirements.txt # Install dependencies (adjust as needed) RUN pip install --no-cache-dir -r requirements.txt COPY . . # Install agents RUN pip install -e pandas_expression_generator # # Make the script executable RUN chmod +x start.sh # Start both processes CMD ["./start.sh"]