File size: 186 Bytes
6f58cbf
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
FROM python:3.10.13

WORKDIR /app

COPY requirements.txt requirements.txt
RUN pip install -r requirements.txt

COPY . .

ENV GR_SERVER_NAME=0.0.0.0
EXPOSE 7860

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