File size: 210 Bytes
05b8bc9
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
FROM python:3.9

WORKDIR /test1

COPY . /test1

RUN pip install --no-cache-dir --upgrade -r /test1/requirements.txt

COPY . .

CMD ["streamlit", "run", "/test1/app.py", "--address", "0.0.0.0", "--port", "7860"]