Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions microservices/dlstreamer-pipeline-server/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,8 @@ RUN . /etc/os-release && \
if [ "$VERSION_ID" = "24.04" ]; then \
export no_proxy= && \
apt-get update --allow-releaseinfo-change && apt-get install -y --no-install-recommends \
cpuid \
util-linux \
python3-venv \
libglib2.0-0 \
libusb-1.0-0 \
Expand All @@ -141,6 +143,8 @@ RUN . /etc/os-release && \
else \
export no_proxy= && \
apt-get update --allow-releaseinfo-change && apt-get install -y --no-install-recommends \
cpuid \
util-linux \
python3-venv \
libglib2.0-0 \
libusb-1.0-0 \
Expand Down Expand Up @@ -208,7 +212,7 @@ RUN mkdir -p $XDG_RUNTIME_DIR && chmod -R g+s $XDG_RUNTIME_DIR && chown ${USER}:
USER $USER

# Copy source code
COPY ./docker/run.sh .
COPY ./docker/run.sh ./docker/detect-cores.sh ./
COPY ./utils/*.py ./utils/
COPY ./src/ ./src

Expand Down Expand Up @@ -318,4 +322,4 @@ RUN apt update && \

RUN pip3 install --no-cache-dir --upgrade openvino==2025.2.0 openvino-telemetry==2025.2.0

USER ${USER}
USER ${USER}
Loading
Loading