Commits
Click on a commit to change the comparison rangefix: use correct apt version syntax for git in Dockerfile
Replace invalid Python-style version operator (>=) with proper apt
version syntax (=) for git package. The >= operator was being
interpreted by bash as shell redirection, creating an unwanted file
named '=1:2.47.3' in /opt/prefect/ during Docker builds.
This aligns with the syntax used in client/Dockerfile.
Co-Authored-By: alex.s@prefect.io <ajstreed1@gmail.com>2 days ago
by devin-ai-integration[bot] feat: add post-install version check for git >= 1:2.47.3
Add dpkg --compare-versions check after git installation to ensure
the installed version meets the minimum requirement of 1:2.47.3.
The build will fail with a clear error message if the git version
is too old.
Co-Authored-By: alex.s@prefect.io <ajstreed1@gmail.com>2 days ago
by devin-ai-integration[bot]