lively-king-98806
07/28/2022, 3:12 PMpython_test(s)
. The docs state that runtime_package_dependencies
puts the packaged resources into chroot. If the runtime_package_dependencies
is a docker_image
, is there a way to get the image name/tag that was created?bitter-ability-32190
07/28/2022, 3:13 PMoutput_path
field).
If I'm not thinking too crazily this would allow us to dump a file either named after the image tag, or containing the image tag.lively-king-98806
07/28/2022, 3:14 PMlatest
and hard coding the name/tag as en environment variable
Yeah it does get built as expected. Iām currently usingbitter-ability-32190
07/28/2022, 3:15 PMlively-king-98806
07/28/2022, 3:25 PMextra_env_vars = [
# Helper func
"IMAGE_NAME=" + output(":docker", "sha"),
#or interpolation
"IMAGE_NAME={:docker.sha}"
]
happy-kitchen-89482
07/28/2022, 4:45 PM