File size: 148 Bytes
a8408e3
 
d946b9b
 
a8408e3
d946b9b
1
2
3
4
5
6
7
FROM python:3.9-slim
WORKDIR /app
COPY . .
RUN pip install -r requirements.txt
EXPOSE 8501
CMD ["streamlit", "run", "app.py", "--server.port=8501"]