File tree Expand file tree Collapse file tree 2 files changed +4
-0
lines changed
Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -61,6 +61,8 @@ RUN make create_wheels
6161RUN pip3 install dist/inference_cli*.whl dist/inference_core*.whl dist/inference_cpu*.whl dist/inference_sdk*.whl "setuptools<=75.5.0"
6262RUN pip3 install watchdog[watchmedo]
6363RUN if [ "${TARGETPLATFORM}" = "linux/amd64" ]; then pip3 install -r requirements/requirements.vino.txt; rm -rf ~/.cache/pip; fi
64+ # For dev, overlay inference_models source build instead of pinned PyPI version
65+ RUN pip3 install --force-reinstall --no-deps --no-cache-dir ./inference_models
6466
6567
6668WORKDIR /notebooks
Original file line number Diff line number Diff line change @@ -104,6 +104,8 @@ COPY . .
104104RUN ln -s /usr/bin/python3 /usr/bin/python
105105RUN /bin/make create_wheels_for_gpu_notebook
106106RUN pip3 install --no-cache-dir dist/inference_cli*.whl dist/inference_core*.whl dist/inference_gpu*.whl dist/inference_sdk*.whl "setuptools<=75.5.0"
107+ # For dev, overlay inference_models source build instead of pinned PyPI version
108+ RUN pip3 install --force-reinstall --no-deps --no-cache-dir ./inference_models
107109
108110WORKDIR /notebooks
109111COPY examples/notebooks .
You can’t perform that action at this time.
0 commit comments