File size: 207 Bytes
dfbe641
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
FROM python:3.9-slim-buster
COPY . /app
WORKDIR /app
RUN pip install --upgrade pip
RUN pip install numpy==1.24.3
RUN pip install -r requirements.txt
EXPOSE 8501
ENTRYPOINT ["streamlit","run"]
CMD ["app.py"]