install: fix linux local syntax

This commit is contained in:
Koushik Dutta
2023-06-08 09:54:36 -07:00
parent f137edcc8c
commit fcbb308cb8

View File

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