Hi daggernauts,
As usual, thanks for the amazing work.
Im using python SDK and since I updated to 0.11.4 my with_exec commands are not being cached.
Maybe I am missing some new config...
The command in question is:
pip install git+https://deploy-user-core-gitlab@gitlab.com/spi3pl/lib/core-lib.git@0.15.0#egg=core
and the dagger call is:
for dep in sorted_dependencies:
if dep.dependency.connection_id:
if dep.dependency.type == 'pip':
# add version to pip install command
dep.dependency.command[2] = \
f'{dep.dependency.command[2]}@{dep.dependency.version}#egg={dep.dependency.name}'
container = container.with_exec(dep.dependency.command)
And also i realized im now a "classic" dagger user... things move fast in the daggerverse...
Thanks in advance!