diff options
author | Joshua M. Boniface <joshua@boniface.me> | 2024-03-03 22:25:19 -0500 |
---|---|---|
committer | Joshua M. Boniface <joshua@boniface.me> | 2024-03-03 22:25:19 -0500 |
commit | 51b9f34e3f20f8be3d4f5925e2cae27941df1e97 (patch) | |
tree | e285502dd4b97a6d9b093076b71d77b6ce95396c | |
parent | Fix bad import and formatting (diff) | |
download | jellyfin-packaging-51b9f34e3f20f8be3d4f5925e2cae27941df1e97.tar.gz jellyfin-packaging-51b9f34e3f20f8be3d4f5925e2cae27941df1e97.tar.bz2 jellyfin-packaging-51b9f34e3f20f8be3d4f5925e2cae27941df1e97.zip |
Improve deb installs
-rw-r--r-- | docker/Dockerfile | 4 |
1 files changed, 2 insertions, 2 deletions
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 \ |