From 08439a4e28811ed14e7db659ad61367e9c16e470 Mon Sep 17 00:00:00 2001 From: Marcus Shawcroft Date: Mon, 18 Mar 2019 14:58:44 +0000 Subject: [PATCH] [DOCKER] Pin flatbuffers checkout to the last release tag (#2823). --- docker/install/ubuntu_install_tflite.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/install/ubuntu_install_tflite.sh b/docker/install/ubuntu_install_tflite.sh index ed8ea1deff3f..fc5d0e95356c 100755 --- a/docker/install/ubuntu_install_tflite.sh +++ b/docker/install/ubuntu_install_tflite.sh @@ -5,7 +5,7 @@ set -u set -o pipefail # Download, build and install flatbuffers -git clone --depth=1 --recursive https://github.com/google/flatbuffers.git +git clone --branch=v1.10.0 --depth=1 --recursive https://github.com/google/flatbuffers.git cd flatbuffers cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Release make install -j8