FROM python:3.10-slim WORKDIR /app RUN pip install --no-cache-dir --upgrade pip && \ pip install --no-cache-dir \ numpy==1.24.3 \ pandas==2.0.3 \ requests==2.31.0 \ gradio==3.50.2 \ openpyxl==3.1.2 COPY app.py . EXPOSE 7860 CMD ["python", "app.py"]