File size: 267 Bytes
6f5b8e0
915869c
 
909941f
915869c
4b8b8e7
915869c
909941f
 
5bdeda5
b706aa3
1
2
3
4
5
6
7
8
9
10
11
12
FROM python:3.9

WORKDIR /app
COPY . /app

RUN pip install --no-cache-dir -r requirements.txt

EXPOSE 7860
ENV STREAMLIT_SERVER_HEADLESS=true

CMD ["streamlit", "run", "app.py", "--server.port=8501", "--server.address=0.0.0.0", "--server.enableXsrfProtection=false"]