FROM python:3.12-slim COPY src ./src COPY scripts ./scripts COPY gradio_app.py . COPY requirements.txt . ENV DOCKER_ENV=1 RUN bash scripts/setup_env.sh CMD ["python", "gradio_app.py"]