Skip to content
This repository was archived by the owner on Aug 22, 2023. It is now read-only.

Some debian package manager tweaks #4

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
6 changes: 3 additions & 3 deletions video_analytics_Intel_GPU/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ MAINTAINER [email protected]
LABEL Name=tutorials-base-test Version=0.1.0

RUN apt-get update \
&& apt install -y software-properties-common cpio \
&& apt-get --no-install-recommends install -y software-properties-common cpio \
&& rm -rf /var/lib/apt/lists/*

RUN add-apt-repository -y ppa:teejee2008/ppa
RUN apt-get update && apt-get install -y \
RUN apt-get update && apt-get --no-install-recommends install -y \
git \
libssl-dev \
dh-autoreconf \
Expand Down Expand Up @@ -36,7 +36,7 @@ RUN apt-get update && apt-get install -y \
libomp-dev \
&& rm -rf /var/lib/apt/lists/*

RUN apt-get update && apt-get install -y \
RUN apt-get update && apt-get --no-install-recommends install -y \
libopencv-dev \
checkinstall \
pkg-config \
Expand Down