chore: Update Dockerfile to install additional system dependencies and upgrade pip tooling

This commit is contained in:
2026-05-11 16:41:25 +08:00
parent 398ac49e52
commit 4369272070
2 changed files with 8 additions and 2 deletions
+1 -2
View File
@@ -21,8 +21,7 @@ RUN apt-get update \
libpq-dev \
libffi-dev \
python3-dev \
&& rm -rf /var/lib/apt/lists/*
&& rm -rf /var/lib/apt/lists/*
&& rm -rf /var/lib/apt/lists/*
# Ensure pip/setuptools/wheel and Rust toolchain helpers are up-to-date so
# binary wheels are preferred and building from source can succeed when needed.
+7
View File
@@ -0,0 +1,7 @@
Release v0.1.22
- Fix Dockerfile: switch to `python:3.14-slim-bookworm`, remove Rust toolchain install, and rely on prebuilt wheels where possible.
- Install necessary build deps for wheel compilation (`build-essential`, `libpq-dev`, `libffi-dev`, `python3-dev`).
- Prepare image build improvements to avoid heavy Rust installs during CI/local builds.
See CHANGELOG.md for past releases.