fix(development): upgrade python image to fix nightly image building #1258
fix(development): upgrade python image to fix nightly image building #1258douenergy merged 2 commits intoCanner:mainfrom
Conversation
WalkthroughThe Dockerfile for ibis-server was updated to use Debian 12 ("bookworm") Python 3.11 images for both builder and runtime stages. The Microsoft package repository setup was changed to use a dearmored GPG keyring file and the repository source was updated to Debian 12 with a signed-by option. Changes
Poem
📜 Recent review detailsConfiguration used: CodeRabbit UI 📒 Files selected for processing (1)
🚧 Files skipped from review as they are similar to previous changes (1)
⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (1)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
SupportNeed help? Create a ticket on our support page for assistance with any issues or questions. Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
There was a problem hiding this comment.
Actionable comments posted: 1
🔭 Outside diff range comments (1)
ibis-server/Dockerfile (1)
1-1: Builder & runtime base images diverge – expect ABI mismatch at runtimeThe builder stage still uses
python:3.11-busterwhile the runtime stage has moved topython:3.11-slim-bookworm. Native extensions compiled against Buster’s glibc and library versions (e.g., psycopg2, pyarrow, rust-backed wheels) can break when copied into a Bookworm runtime. Align the two stages to the same Debian release.-FROM python:3.11-buster AS builder +FROM python:3.11-slim-bookworm AS builderRe-build locally after this change to ensure all wheels load correctly.
Also applies to: 40-40
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro
📒 Files selected for processing (1)
ibis-server/Dockerfile(1 hunks)
⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (4)
- GitHub Check: build-ibis-image (linux_arm64_runner, linux/arm64)
- GitHub Check: build-image
- GitHub Check: build-ibis-image (ubuntu-latest, linux/amd64)
- GitHub Check: ci
Description
Summary by CodeRabbit