Skip to content

Commit b976415

Browse files
committed
fix (node-delta-sharing): Fix fetching arrow packages in dockerfiles debian and ubuntu
Signed-off-by: Ritesh.K <riteshkarki6@gmail.com>
1 parent 134ba42 commit b976415

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

packaging/docker/Dockerfile.debian

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ RUN apt-get update && \
5656
nlohmann-json3-dev
5757

5858
# Get debian package from Apache for arrow and parquet.
59-
RUN wget https://packages.apache.org/artifactory/arrow/${DISTRO}/apache-arrow-apt-source-latest-${DEBIAN_VERSION}
59+
RUN wget https://packages.apache.org/artifactory/arrow/${DISTRO}/apache-arrow-apt-source-latest-${DEBIAN_VERSION}.deb
6060
RUN apt-get install -y -V ./apache-arrow-apt-source-latest-${DEBIAN_VERSION}.deb
6161
RUN apt-get update && \
6262
apt-get install -y \

packaging/docker/Dockerfile.ubuntu

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,8 @@ RUN apt-get update && \
6363
nlohmann-json3-dev
6464

6565
# Get debian package from Apache for arrow and parquet.
66-
RUN wget https://packages.apache.org/artifactory/arrow/${DISTRO}/apache-arrow-apt-source-latest-${UBUNTU_VERSION}
67-
RUN apt-get install -y -V ./apache-arrow-apt-source-latest-${UBUNTU_VERSION}
66+
RUN wget https://packages.apache.org/artifactory/arrow/${DISTRO}/apache-arrow-apt-source-latest-${UBUNTU_VERSION}.deb
67+
RUN apt-get install -y -V ./apache-arrow-apt-source-latest-${UBUNTU_VERSION}.deb
6868
RUN apt-get update && \
6969
apt-get install -y \
7070
libarrow-dev libarrow-dataset-dev libparquet-dev

0 commit comments

Comments
 (0)