File size: 313 Bytes
3c3c4b3
191800f
5dc6bd9
191800f
 
 
91c51c1
191800f
91c51c1
191800f
 
 
 
6eabed0
 
5dc6bd9
 
91c51c1
bc71156
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
FROM python:3.9.10

EXPOSE 7860

WORKDIR /app

COPY requirements_heroku.txt requirements_heroku.txt

RUN pip install -r requirements_heroku.txt

COPY /app /app  
COPY /examples /examples

COPY setup.sh setup.sh

#ENV GRADIO_SERVER_NAME=0.0.0.0 
#ENV GRADIO_SERVER_PORT="$PORT"

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