From 0f15bce0d8f5bb76b602e1e1b70a05a2f8606f15 Mon Sep 17 00:00:00 2001 From: pssc Date: Mon, 10 Feb 2025 20:43:54 +0000 Subject: [PATCH] try disabling libpci3 --- lms/Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lms/Dockerfile b/lms/Dockerfile index cdf1eff..e9c8dbc 100644 --- a/lms/Dockerfile +++ b/lms/Dockerfile @@ -10,6 +10,8 @@ RUN mv /init /s6init # Upgrading the operating system inside the container RUN apt-get update && apt-get dist-upgrade -y -o Dpkg::Options::="--force-confold" && apt-get --no-install-recommends --no-install-suggests -qq -y install wget git rsync patch && apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* +RUN apt-get purge libpci3 || true +RUN apt-mark hold libpci3 FROM base AS builder ARG BUILD_ARCH