File size: 301 Bytes
752678b
bdac0e3
752678b
 
bdac0e3
 
 
a22cfb0
bd6f067
752678b
 
bd6f067
7eaf4dc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
FROM python:3.9-slim

RUN useradd -m user
USER user
ENV PATH="/home/user/.local/bin:$PATH"

WORKDIR /app
COPY . .

RUN pip install --no-cache-dir --upgrade pip \
 && pip install --no-cache-dir -r requirements.txt

CMD sh -c "streamlit run app.py --server.address=0.0.0.0 --server.port=\${PORT:-8501}"