FROM python:3.12 WORKDIR /code RUN pip install --upgrade pip RUN pip install gradio RUN pip install --no-cache-dir --upgrade gradio COPY . /code CMD ["python3 /code/app.py"]