# Use an official Python runtime as base FROM python:3.9 # Set working directory WORKDIR /app # Copy all files COPY . /app # Install dependencies RUN pip install --no-cache-dir -r requirements.txt # Expose port for Gradio EXPOSE 7860 # Run the RBO Player CMD ["python", "app.py"]