I am building custom GitLab/GitHub runner docker images for which I need to have Alembic available. Instead of building Alembic from source for every version of the docker image I push out, I am pondering building Alembic packages like DEB/RPM via CPack and installing those packages as part of my custom docker build.
This reduces my iteration time and also reduce unnecessary CPU cycles.
Would adding CPack to Alembic CMakeLists.txt be a welcomed contribution since I am already doing that locally for my builds.
The changes would be at the top level CMakeLists.txt appending lines like these at the very end of the file
set(CPACK_PACKAGE_CONTACT "someone")
include(CPack)
Happy to do so via a PR so everyone can see the propose changes.
Kind regards