FROM python:3.11-slim ARG GRADIO_SERVER_PORT=7860 ENV GRADIO_SERVER_PORT=${GRADIO_SERVER_PORT} WORKDIR /app COPY requirements.txt /app/ RUN pip install -r /app/requirements.txt COPY app.py /app/ CMD ["python", "/app/app.py"]