Spaces:
Sleeping
Sleeping
FROM python:3.10 | |
SHELL ["/bin/bash", "-c"] | |
RUN python -m venv venv | |
RUN source venv/bin/activate | |
RUN ls -a | |
COPY ./requirements.txt requirements.txt | |
RUN mkdir deps | |
COPY ./deps/intel_npu_acceleration_library-1.3.0-cp310-cp310-linux_x86_64.whl deps | |
RUN pip install -r requirements.txt | |
ENTRYPOINT streamlit app.py |