Spaces:
Sleeping
Sleeping
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"] | |