From e412d93b00702b5853c65ff3f4e858a008be171d Mon Sep 17 00:00:00 2001 From: Changming Sun Date: Tue, 1 Aug 2023 11:27:29 -0700 Subject: [PATCH] Add lsb-release package to android custom build (#16944) ### Description Add lsb-release package to android custom build ### Motivation and Context To fix a build issue: /workspace/onnxruntime/tools/ci_build/github/linux/docker/inference/x64/python/cpu/scripts/install_protobuf.sh: line 27: lsb_release: command not found --- tools/android_custom_build/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/android_custom_build/Dockerfile b/tools/android_custom_build/Dockerfile index 7e67cc9214..539badb362 100644 --- a/tools/android_custom_build/Dockerfile +++ b/tools/android_custom_build/Dockerfile @@ -21,7 +21,7 @@ RUN apt-get update && apt-get install --yes --no-install-recommends \ python3-pip \ python3-setuptools \ python3-wheel \ - unzip + unzip lsb-release # cmake RUN CMAKE_VERSION=3.26.3 && \