Skip to content

Commit 61c82ea

Browse files
authored
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]>
1 parent 1fe27fe commit 61c82ea

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

ci/docker/conda.dockerfile

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,15 @@ FROM ${arch}/ubuntu:22.04
2121
# install build essentials
2222
RUN export DEBIAN_FRONTEND=noninteractive && \
2323
apt-get update -y -q && \
24-
apt-get install -y -q curl wget tzdata libc6-dbg gdb \
25-
&& apt-get clean \
26-
&& rm -rf /var/lib/apt/lists/*
24+
apt-get install -y -q \
25+
curl \
26+
gdb \
27+
libc6-dbg \
28+
patch \
29+
tzdata \
30+
wget && \
31+
apt-get clean && \
32+
rm -rf /var/lib/apt/lists/*
2733

2834
# install conda and mamba via miniforge
2935
COPY ci/scripts/install_conda.sh /arrow/ci/scripts/

0 commit comments

Comments
 (0)