removed apt install from main

This commit is contained in:
Abinila Siva 2025-08-20 17:06:33 -04:00
parent 5bfb10398d
commit 7f8b6db5ec
2 changed files with 2 additions and 1 deletions

View File

@ -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 / /

View File

@ -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