-
Notifications
You must be signed in to change notification settings - Fork 4k
Closed
Labels
Description
Describe the bug, including details regarding any error messages, version, and platform.
I'm building a docker image and it started failing from today with below error when installing deb package
Error:
[6/8] RUN apt install -y -V ./apache-arrow-apt-source-latest-$(lsb_release --codename --short).deb:
#9 0.379
#9 0.379 WARNING: apt does not have a stable CLI interface. Use with caution in scripts.
#9 0.379
#9 0.430 Reading package lists...
#9 1.761 E: Invalid archive signature
#9 1.761 E: Internal error, could not locate member control.tar{.zst,.lz4,.gz,.xz,.bz2,.lzma,}
#9 1.761 E: Could not read meta data from /apache-arrow-apt-source-latest-jammy.deb
#9 1.761 E: The package lists or status file could not be parsed or opened.
executor failed running [/bin/sh -c apt install -y -V ./apache-arrow-apt-source-latest-$(lsb_release --codename --short).deb]: exit code: 100`
Dockerfile:
FROM ubuntu
RUN apt update
RUN apt install -y -V ca-certificates lsb-release wget
RUN wget https://apache.jfrog.io/artifactory/arrow/$(lsb_release --id --short | tr 'A-Z' 'a-z')/apache-arrow-apt-source-latest-$(lsb_release --codename --short).deb
RUN apt install -y -V ./apache-arrow-apt-source-latest-$(lsb_release --codename --short).deb
RUN apt update
RUN apt install -y -V libarrow-dev Component(s)
C++
vlebedeff, ImreSamu, csghormley, zhanglei1949 and tzRomanierik-infer, ImreSamu and maorzsh