From 51b9f34e3f20f8be3d4f5925e2cae27941df1e97 Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Sun, 3 Mar 2024 22:25:19 -0500 Subject: Improve deb installs --- docker/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'docker') diff --git a/docker/Dockerfile b/docker/Dockerfile index a840558..5d6bdcf 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -164,7 +164,7 @@ RUN if test "${PACKAGE_ARCH}" = "amd64"; then \ -LO https://github.com/intel/compute-runtime/releases/download/${NEO_VERSION}/intel-opencl-icd_${NEO_VERSION}_amd64.deb \ -LO https://github.com/intel/compute-runtime/releases/download/${NEO_VERSION}/intel-level-zero-gpu_${LEVEL_ZERO_VERSION}_amd64.deb \ -LO https://github.com/intel/compute-runtime/releases/download/${NEO_VERSION}/libigdgmm12_${GMMLIB_VERSION}_amd64.deb \ - && dpkg -i *.deb \ + && apt-get install --no-install-recommends --no-install-suggests -f -y ./*.deb \ && cd .. \ && rm -rf intel-compute-runtime \ ; fi \ @@ -177,7 +177,7 @@ RUN if test "${PACKAGE_ARCH}" = "arm64"; then \ mkdir libmali-rockchip \ && cd libmali-rockchip \ && curl -LO https://github.com/tsukumijima/libmali-rockchip/releases/download/${MALI_PKG_TAG}/libmali-${MALI_PKG_CFG}_${MALI_PKG_VER}.deb \ - && apt-get install --no-install-recommends --no-install-suggests -y ./*.deb \ + && apt-get install --no-install-recommends --no-install-suggests -f -y ./*.deb \ && cd .. \ && rm -rf libmali-rockchip \ ; fi \ -- cgit