Skip to content

Commit 38da1f3

Browse files
authored
Merge pull request #129 from intel/update-branch
fix: update Dockerfile for requirements (#366)
2 parents e64a6f9 + 30c7315 commit 38da1f3

File tree

2 files changed

+19
-21
lines changed

2 files changed

+19
-21
lines changed

usecases/ai/ai-video-analytics/Dockerfile

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,25 @@ COPY --chown=intel:intel ./ /usr/src/app
3838
RUN python3 -m venv /usr/src/.venv
3939
ENV PATH="/usr/src/.venv/bin:$PATH"
4040
RUN python3 -m pip install --no-cache-dir --upgrade pip \
41-
&& python3 -m pip install --no-cache-dir -r requirements.txt
41+
&& python3 -m pip install --no-cache-dir gradio==5.11.0 \
42+
openvino-dev==2024.4.0 \
43+
nncf==2.13.0 \
44+
optimum==1.22.0 \
45+
optimum-intel==1.19.0 \
46+
langchain==0.3.3 \
47+
langchain-community==0.3.2 \
48+
langchain-chroma==0.1.4 \
49+
chromadb==0.5.12 \
50+
transformers==4.44.2 \
51+
sentence-transformers==3.1.1 \
52+
pandas==2.2.3 \
53+
ultralytics==8.3.9 \
54+
openai-clip==1.0.1 \
55+
moviepy==1.0.3 \
56+
opencv-python==4.10.0.84
57+
RUN python3 -m pip install --no-cache-dir --extra-index-url https://pytorch-extension.intel.com/release-whl/stable/cpu/us/ \
58+
torch==2.4.1 \
59+
torchvision==0.19.1
4260
RUN mkdir -p ./data/model/facial_recognition
4361
RUN wget -O ./data/model/facial_recognition/face-detection-retail-0004.xml https://storage.openvinotoolkit.org/repositories/open_model_zoo/2023.0/models_bin/1/face-detection-retail-0004/FP32/face-detection-retail-0004.xml
4462
RUN wget -O ./data/model/facial_recognition/face-detection-retail-0004.bin https://storage.openvinotoolkit.org/repositories/open_model_zoo/2023.0/models_bin/1/face-detection-retail-0004/FP32/face-detection-retail-0004.bin

usecases/ai/ai-video-analytics/requirements.txt

Lines changed: 0 additions & 20 deletions
This file was deleted.

0 commit comments

Comments
 (0)