Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +2 -1
Dockerfile
CHANGED
@@ -4,6 +4,7 @@ RUN python -m venv venv
|
|
4 |
RUN source venv/bin/activate
|
5 |
RUN ls -a
|
6 |
COPY ./requirements.txt requirements.txt
|
7 |
-
|
|
|
8 |
RUN pip install -r requirements.txt
|
9 |
ENTRYPOINT streamlit app.py
|
|
|
4 |
RUN source venv/bin/activate
|
5 |
RUN ls -a
|
6 |
COPY ./requirements.txt requirements.txt
|
7 |
+
RUN mkdir deps
|
8 |
+
COPY ./deps/intel_npu_acceleration_library-1.3.0-cp310-cp310-linux_x86_64.whl deps
|
9 |
RUN pip install -r requirements.txt
|
10 |
ENTRYPOINT streamlit app.py
|