Skip to content

Commit 083ff9c

Browse files
committed
fix (node-delta-sharing): Fix arrow package installation for apache arrow in Ubuntu dockerfile.
Signed-off-by: Ritesh.K <riteshkarki6@gmail.com>
1 parent 90fbd84 commit 083ff9c

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

packaging/docker/Dockerfile.ubuntu

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
# You can choose between Debian and Ubuntu here
88
ARG DISTRO=ubuntu
99
ARG UBUNTU_VERSION=24.04
10+
ARG UBUNTU_CODENAME=noble
1011
ARG DISTRO=${DISTRO}
1112

1213
FROM ${DISTRO}:${UBUNTU_VERSION} AS dev
@@ -64,8 +65,8 @@ RUN apt-get update && \
6465
nlohmann-json3-dev
6566

6667
# Get debian package from Apache for arrow and parquet.
67-
RUN wget https://packages.apache.org/artifactory/arrow/${DISTRO}/apache-arrow-apt-source-latest-${UBUNTU_VERSION}.deb
68-
RUN apt-get install -y -V ./apache-arrow-apt-source-latest-${UBUNTU_VERSION}.deb
68+
RUN wget https://packages.apache.org/artifactory/arrow/${DISTRO}/apache-arrow-apt-source-latest-${UBUNTU_CODENAME}.deb
69+
RUN apt-get install -y -V ./apache-arrow-apt-source-latest-${UBUNTU_CODENAME}.deb
6970
RUN apt-get update && \
7071
apt-get install -y \
7172
libarrow-dev libarrow-dataset-dev libparquet-dev

0 commit comments

Comments
 (0)