File size: 259 Bytes
a0010e2
 
 
 
ead2ac2
a0010e2
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
FROM python:3.11-slim

WORKDIR /app

RUN --mount=type=cache,target=/root/.cache/pip pip install --default-timeout=1000 streamlit requests

COPY ./ui /app/ui

EXPOSE 8501

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