enricorampazzo commited on
Commit
3e6c65f
·
verified ·
1 Parent(s): 7d683f2

Update Dockerfile

Browse files
Files changed (1) hide show
  1. 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
- COPY ./deps/*.whl deps
 
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