File size: 138 Bytes
abf8910
 
 
dec72bb
87d0bd1
abf8910
87d0bd1
abf8910
87d0bd1
1
2
3
4
5
6
7
8
9
FROM python:3.9

WORKDIR /code
RUN pip install gradio
RUN pip install --no-cache-dir --upgrade -r gradio

COPY . .

CMD ["python3 app.py"]