From 61c82eadc93c4b730d9e4cf4fdc4a03960c5c0ba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ra=C3=BAl=20Cumplido?= Date: Sat, 18 Jan 2025 07:31:45 +0100 Subject: [PATCH] GH-45293: [CI] Install patch command to base conda.dockerfile required in case of bundled ORC (#45294) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ### Rationale for this change Patch command is required for bundled ORC. ### What changes are included in this PR? Adding patch to the based conda image. ### Are these changes tested? Yes via CI ### Are there any user-facing changes? No * GitHub Issue: #45293 Authored-by: Raúl Cumplido Signed-off-by: Sutou Kouhei --- ci/docker/conda.dockerfile | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/ci/docker/conda.dockerfile b/ci/docker/conda.dockerfile index fbd81903b0a3a..0d48fb3ef83d0 100644 --- a/ci/docker/conda.dockerfile +++ b/ci/docker/conda.dockerfile @@ -21,9 +21,15 @@ FROM ${arch}/ubuntu:22.04 # install build essentials RUN export DEBIAN_FRONTEND=noninteractive && \ apt-get update -y -q && \ - apt-get install -y -q curl wget tzdata libc6-dbg gdb \ - && apt-get clean \ - && rm -rf /var/lib/apt/lists/* + apt-get install -y -q \ + curl \ + gdb \ + libc6-dbg \ + patch \ + tzdata \ + wget && \ + apt-get clean && \ + rm -rf /var/lib/apt/lists/* # install conda and mamba via miniforge COPY ci/scripts/install_conda.sh /arrow/ci/scripts/