From fcbb308cb8c61d9c55648564e3e4afa2d4a3ee55 Mon Sep 17 00:00:00 2001 From: Koushik Dutta Date: Thu, 8 Jun 2023 09:54:36 -0700 Subject: [PATCH] install: fix linux local syntax --- install/docker/template/Dockerfile.full.header | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install/docker/template/Dockerfile.full.header b/install/docker/template/Dockerfile.full.header index 63f9dce24..ba5da8f41 100644 --- a/install/docker/template/Dockerfile.full.header +++ b/install/docker/template/Dockerfile.full.header @@ -39,7 +39,7 @@ RUN echo "deb https://packages.cloud.google.com/apt coral-edgetpu-stable main" | apt-get -y update && apt-get -y install libedgetpu1-std # intel opencl gpu for openvino -RUN if [ "$(uname -m)" = "x86_64" ]; then apt-get -y install intel-opencl-icd; fi +RUN if [ "$(uname -m)" == "x86_64" ]; then apt-get -y install intel-opencl-icd; fi # these are necessary for pillow-simd, additional on disk size is small # but could consider removing this.