File size: 221 Bytes
f82743c
46f4631
 
 
f82743c
46f4631
f82743c
46f4631
f82743c
1
2
3
4
5
6
7
8
9
10
FROM python:3.11.13

WORKDIR /app

COPY . .

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

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