This is an automated email from the ASF dual-hosted git repository.
kou pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow.git
The following commit(s) were added to refs/heads/main by this push:
new 61c82eadc9 GH-45293: [CI] Install patch command to base
conda.dockerfile required in case of bundled ORC (#45294)
61c82eadc9 is described below
commit 61c82eadc93c4b730d9e4cf4fdc4a03960c5c0ba
Author: Raúl Cumplido <[email protected]>
AuthorDate: Sat Jan 18 07:31:45 2025 +0100
GH-45293: [CI] Install patch command to base conda.dockerfile required in
case of bundled ORC (#45294)
### 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 <[email protected]>
Signed-off-by: Sutou Kouhei <[email protected]>
---
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 fbd81903b0..0d48fb3ef8 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/