Spaces:
Running
Running

removing unnecessary dependencies when running in hf, using conditionals to avoid loading npu libraries in hf
2720b8d
FROM python:3.10 | |
SHELL ["/bin/bash", "-c"] | |
RUN python -m venv venv | |
RUN source venv/bin/activate | |
RUN ls -a | |
RUN mkdir app | |
COPY . app | |
WORKDIR app | |
RUN rm deps/*.whl | |
RUN pip install -r requirements-base.txt | |
ENTRYPOINT streamlit run app.py |