-
Notifications
You must be signed in to change notification settings - Fork 25
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
Add build for local components #207
Conversation
tests/example_pipelines/compiled_pipeline/example_2/docker-compose.yml
Outdated
Show resolved
Hide resolved
tests/example_pipelines/compiled_pipeline/example_1/docker-compose.yml
Outdated
Show resolved
Hide resolved
if component_op.local_component: | ||
services[safe_component_name][ | ||
"build" | ||
] = f"./{Path(component_op.component_spec_path).parent}" |
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.
Can the output_path
argument be any location on your filesystem? If so, does it make sense to use the "./{Path()}" format or should make it depend on the output_path
? I assume the docker-compose up
will be ran from the output_path
, which could be in a different directory than the local components.
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.
You mean reference the component code relative from the output_path ?
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.
Yes, is this needed?
bba7ef5
to
e7397ba
Compare
No description provided.