File size: 277 Bytes
a12eead
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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"]