-
Notifications
You must be signed in to change notification settings - Fork 20
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fixing onbuild #114
Fixing onbuild #114
Conversation
build.py
Outdated
@@ -58,6 +58,8 @@ def docker_build(image_spec, path, build_args): | |||
for k, v in build_args.items(): | |||
command += ['--build-arg', f'{k}={v}'] | |||
command.append(path) | |||
# debug | |||
print(command) | |||
subprocess.check_call(command, shell=True) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@yuvipanda - I'm not getting any output from this call and the onbuild image isn't showing up. Any thoughts on what is going on here?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Issue: We want to test building the base image and then have all other on-build images run as parallel jobs. Currently the base image builds, but is not among the local docker images for dependent jobs, nor is it currently pushed to a public access point, so we get failures like I'll try a solution which pushes base images to dockerhub with a temporary 'PR' tag modifier. Then when the PR is merged those images can be retagged and the 'PR' tags deleted. |
closing in favor of #118 |
No description provided.