Omega359 opened a new issue, #9209: URL: https://github.com/apache/arrow-datafusion/issues/9209
### Describe the bug ``` ❯ docker run -it -v /tmp:/data datafusion-cli datafusion-cli: /lib/x86_64-linux-gnu/libm.so.6: version `GLIBC_2.35' not found (required by datafusion-cli) datafusion-cli: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.32' not found (required by datafusion-cli) datafusion-cli: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.33' not found (required by datafusion-cli) datafusion-cli: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34' not found (required by datafusion-cli) ``` Updating the debian release in the Dockerfile from ``` FROM debian:bullseye-slim ``` to ``` FROM debian:bookworm-slim ``` fixes the issue ``` ❯ docker -v Docker version 25.0.2, build 29cf629 ```` ### To Reproduce Build DataFusion CLI on WSL with latest Ubuntu version using the docker build then docker run cmds ``` docker build -f datafusion-cli/Dockerfile . --tag datafusion-cli ... docker run -it -v /tmp:/data datafusion-cli ``` ### Expected behavior _No response_ ### Additional context _No response_ -- 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: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
