File size: 149 Bytes
2c9ef08
f977726
 
 
 
4ebc768
f977726
1
2
3
4
5
6
7
8
FROM python:3.11-bookworm

WORKDIR /app
COPY . /app
RUN pip install -r requirements.txt
RUN mkdir /.cache
ENTRYPOINT ["streamlit", "run", "demo.py"]