File tree Expand file tree Collapse file tree
src/stirling/testing/demo_apps Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -28,7 +28,8 @@ version=1.0
2828IMAGES=()
2929
3030for go_image_digest in " ${! GO_IMAGE_DIGEST_MAP[@]} " ; do
31- tag=" ghcr.io/pixie-io/golang_${go_image_digest// ./ _} _grpc_server_with_buildinfo:$version "
31+ go_version=${go_image_digest%% -* }
32+ tag=" ghcr.io/pixie-io/golang_${go_version// ./ _} _grpc_server_with_buildinfo:$version "
3233 google_golang_grpc=${GO_IMAGE_DIGEST_MAP[$go_image_digest]}
3334 echo " Building and pushing image: $tag "
3435 docker build . --build-arg GO_IMAGE_DIGEST=" ${go_image_digest} " --build-arg GOOGLE_GOLANG_GRPC=" ${google_golang_grpc} " -t " ${tag} "
Original file line number Diff line number Diff line change @@ -28,7 +28,8 @@ version=1.0
2828IMAGES=()
2929
3030for go_image_digest in " ${! GO_IMAGE_DIGEST_MAP[@]} " ; do
31- tag=" ghcr.io/pixie-io/golang_${go_image_digest// ./ _} _https_server_with_buildinfo:$version "
31+ go_version=${go_image_digest%% -* }
32+ tag=" ghcr.io/pixie-io/golang_${go_version// ./ _} _https_server_with_buildinfo:$version "
3233 x_net_version=${GO_IMAGE_DIGEST_MAP[$go_image_digest]}
3334 echo " Building and pushing image: $tag "
3435 docker build . --build-arg GO_IMAGE_DIGEST=" ${go_image_digest} " --build-arg GOLANG_X_NET=" ${x_net_version} " -t " ${tag} "
You can’t perform that action at this time.
0 commit comments