File size: 189 Bytes
3b3a783
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
FROM python:3.10-slim

WORKDIR /app

RUN apt-get update && apt-get install -y git

COPY . /app

RUN pip install --no-cache-dir gradio Pillow

EXPOSE 80

CMD ["python", "tld/gradio_app.py"]