Spaces:
Build error
Build error
| # Use the official Python image | |
| FROM python:3.10 | |
| # Set the working directory | |
| WORKDIR /app | |
| # Copy all files to the container | |
| COPY . . | |
| # Install dependencies | |
| RUN pip install --no-cache-dir -r requirements.txt | |
| # Expose the Streamlit port | |
| EXPOSE 8501 | |
| # Run the Streamlit app | |
| CMD ["streamlit", "run", "customer_support_agent.py", "--server.port=8501", "--server.address=0.0.0.0"] | |