Skip to content

Commit

Permalink
Remove unnecessary installation of xz-utils
Browse files Browse the repository at this point in the history
  • Loading branch information
raulcd committed Sep 9, 2024
1 parent cceb42c commit c0cdfea
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions ci/docker/linux-apt-r.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -83,13 +83,7 @@ COPY ci/scripts/install_python.sh /arrow/ci/scripts/
# Need Python to check py-to-r bridge. Ubuntu 20.04 uses
# python 3.8 which is unsuported for pyarrow
RUN if [ "${ubuntu}" = "20.04" ]; then \
quiet=$([ "${DEBUG}" = "yes" ] || echo "-qq") && \
apt update ${quiet} && \
apt install -y -V ${quiet} \
xz-utils && \
apt clean && \
rm -rf /var/lib/apt/lists/* && \
/arrow/ci/scripts/install_python.sh linux ${python} \
/arrow/ci/scripts/install_python.sh linux ${python}; \
else \
apt update ${quiet} && \
apt-get install -y \
Expand Down

0 comments on commit c0cdfea

Please sign in to comment.