File size: 248 Bytes
c1f8c6c
 
370c70b
c1f8c6c
f163586
 
370c70b
97eb399
 
c1f8c6c
b517011
 
1f8d218
 
ae9499f
c1f8c6c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
FROM python

WORKDIR /app

RUN chmod 777 /app

COPY . /app

RUN pip install --trusted-host pypi.python.org -r requirements.txt

RUN mkdir /.cache

RUN chmod 777 /.cache

CMD ["streamlit", "run", "app.py", "--server.enableXsrfProtection", "false"]