# Base image FROM python:3.9-slim # Set working directory WORKDIR /app # Copy project files COPY . . # Install dependencies RUN pip install -r requirements.txt # Expose application port EXPOSE 5000 # Run the application CMD ["python", "src/frontend/gui_chat_interface.py"]