From 44bc8fc950baf276bc9ba97666e63d1b5c3c507d Mon Sep 17 00:00:00 2001 From: Vaishnavi Subhedar - Xilinx <141360387+SubhedarV@users.noreply.github.com> Date: Fri, 27 Sep 2024 15:34:21 -0700 Subject: [PATCH] installing packages for ubuntu --- Dockerfile/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile/Dockerfile b/Dockerfile/Dockerfile index 959e0d4b14..e17ac7b1c2 100644 --- a/Dockerfile/Dockerfile +++ b/Dockerfile/Dockerfile @@ -52,6 +52,7 @@ RUN if [[ "${BASE_IMAGE}" == amazonlinux* ]]; then \ elif echo "${BASE_IMAGE}" | grep -q "ubuntu"; then \ bash -c 'apt-get update && \ apt-get install -y wget && \ + apt-get install -y ocl-icd-libopencl1 lsb-release dkms udev python3 ocl-icd-opencl-dev uuid-dev libboost-filesystem1.65.1 libboost-program-options1.65.1 libboost-system1.65.1 libprotobuf10 libyaml-0-2 && \ dpkg -i /tmp/${PACKAGE_FILE} || apt-get install -f -y && \ rm -f /tmp/${PACKAGE_FILE} && \ dpkg -l | grep xrt'; \