From 680b0529d61910eeb9e368606ac5aaf4229e328d Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Sun, 3 Mar 2024 18:59:56 -0500 Subject: Use cd instead of pushd pushd is a BASHism and not valid in /bin/sh. --- docker/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'docker') diff --git a/docker/Dockerfile b/docker/Dockerfile index a90d194..a840558 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -158,14 +158,14 @@ RUN apt-get update \ # https://github.com/intel/compute-runtime/releases RUN if test "${PACKAGE_ARCH}" = "amd64"; then \ mkdir intel-compute-runtime \ - && pushd intel-compute-runtime \ + && cd intel-compute-runtime \ && curl -LO https://github.com/intel/intel-graphics-compiler/releases/download/igc-${IGC_VERSION}/intel-igc-core_${IGC_VERSION}_amd64.deb \ -LO https://github.com/intel/intel-graphics-compiler/releases/download/igc-${IGC_VERSION}/intel-igc-opencl_${IGC_VERSION}_amd64.deb \ -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 \ - && popd \ + && cd .. \ && rm -rf intel-compute-runtime \ ; fi \ && apt-get clean autoclean --yes \ -- cgit