Skip to content

Commit

Permalink
build-cmk-packages: force use of fqn for build images
Browse files Browse the repository at this point in the history
CMK-20968

Change-Id: I6261c72a91be5ceb0856b06d5cee6c6cf62026f0
  • Loading branch information
Frans Fürst committed Jan 1, 2025
1 parent 6c418c6 commit ffd499d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion buildscripts/scripts/build-cmk-packages.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,10 @@ def main() {
// * Bazel opens many files which can lead to crashes
// * See CMK-12159
inside_container(
image: docker.image("${distro}:${docker_tag}"),
// supplying the registry explicitly might not be needed but it looks like image.inside() will
// first try to use the image without registry and only if that didn't work falls back to the
// fully qualified name
image: docker.image("${docker_registry_no_http}/${distro}:${docker_tag}"),
args: [
"--ulimit nofile=16384:32768",
"-v ${checkout_dir}:${checkout_dir}:ro",
Expand Down

0 comments on commit ffd499d

Please sign in to comment.