Skip to content

Commit 53c8469

Browse files
fix: Pass correct type to build_from_dockerfile
Co-Authored-By: Aaron <AJ> Steers <[email protected]>
1 parent 71652ef commit 53c8469

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

airbyte_cdk/cli/airbyte_cdk/_image.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ def build(
111111
if metadata.data.connectorBuildOptions and metadata.data.connectorBuildOptions.baseImage:
112112
image_name = build_from_base_image(connector_directory, metadata, tag, platforms)
113113
else:
114-
image_name = build_from_dockerfile(connector_directory, metadata, tag, platforms)
114+
image_name = build_from_dockerfile(connector_directory, metadata.data, tag, platforms)
115115

116116
if not no_verify:
117117
if verify_image(image_name):

0 commit comments

Comments
 (0)