File size: 174 Bytes
16906c1
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
FROM python:3.8-slim-buster
WORKDIR /app
EXPOSE $PORT

COPY requirements.txt /
RUN pip3 install -r /requirements.txt
COPY . /app

CMD streamlit run app.py --server.port $PORT