File size: 236 Bytes
4b7914e
 
f88d8c3
4b7914e
d5369e8
7b5ea77
 
4b7914e
d5369e8
 
7b5ea77
 
c90d00e
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
FROM python:3.11-slim

WORKDIR /data

# Copies from your Git repo
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt

COPY . .

ENV GRADIO_SERVER_NAME=0.0.0.0
ENV GRADIO_SERVER_PORT=7860

CMD ["python", "app.py"]