prmoore77 opened a new issue, #33934: URL: https://github.com/apache/arrow/issues/33934
### Describe the bug, including details regarding any error messages, version, and platform. When attempting to install package: libarrow-flight-dev in container running Docker image: ubuntu:latest on the **linux/arm64** platform - it fails with error: ``` The following packages have unmet dependencies: libarrow-flight-dev : Depends: libarrow-dev (= 9.0.0-1) but 11.0.0-1 is to be installed E: Unable to correct problems, you have held broken packages. ``` To reproduce the issue - I run these commands: ``` docker run -it --entrypoint /bin/bash --platform linux/arm64 ubuntu:latest # Then in the container - run: apt update && \ apt install -y -V ca-certificates sudo wget lsb-release && \ 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 && \ apt install -y -V ./apache-arrow-apt-source-latest-$(lsb_release --codename --short).deb && \ apt update && \ apt install -y -V libarrow-flight-dev ``` If I run with the **linux/amd64** platform - however - the script above works just fine. I hit this issue when attempting to build an arm64 Docker container (trying to follow instructions here: https://arrow.apache.org/install/) Thank you! ### Component(s) Packaging -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: github-unsubscr...@arrow.apache.org.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org