From 7f8b6db5ecc4088390e16072ee917660a1788a32 Mon Sep 17 00:00:00 2001 From: Abinila Siva Date: Wed, 20 Aug 2025 17:06:33 -0400 Subject: [PATCH] removed apt install from main --- docker/main/Dockerfile | 2 +- docker/main/install_deps.sh | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/docker/main/Dockerfile b/docker/main/Dockerfile index 78e303a8b..4da34ac1e 100644 --- a/docker/main/Dockerfile +++ b/docker/main/Dockerfile @@ -245,7 +245,7 @@ RUN --mount=type=bind,from=wheels,source=/wheels,target=/deps/wheels \ # Install MemryX runtime (requires libgomp (OpenMP) in the final docker image) RUN --mount=type=bind,source=docker/main/install_memryx.sh,target=/deps/install_memryx.sh \ - bash -c "apt update && apt install libgomp1 && bash /deps/install_memryx.sh && rm -rf /var/lib/apt/lists/*" + bash -c "bash /deps/install_memryx.sh" COPY --from=deps-rootfs / / diff --git a/docker/main/install_deps.sh b/docker/main/install_deps.sh index 9684199f8..1e0c181e2 100755 --- a/docker/main/install_deps.sh +++ b/docker/main/install_deps.sh @@ -19,6 +19,7 @@ apt-get -qq install --no-install-recommends -y \ nethogs \ libgl1 \ libglib2.0-0 \ + libgomp1 \ libusb-1.0.0 update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.11 1