File size: 434 Bytes
227c283
56ced1e
 
 
 
 
 
 
 
 
84438e1
56ced1e
 
d456e9b
 
85745b0
56ced1e
 
85745b0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
FROM python:3.9-buster


RUN apt-get install -y git


RUN mkdir /app
RUN git clone https://github.com/ai-auto-factory/ai-set-demo.git && mv ai-set-demo/* /app/

RUN pip install --no-cache --upgrade pip
RUN pip install --no-cache --timeout=120 -r /app/requirements.txt

WORKDIR /app

RUN chmod 777 /app/_secret_auth_.json
EXPOSE 7860


CMD ["python", "-m","streamlit","run","app.py","--server.port","7860","--server.address","0.0.0.0"]