We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3981729 commit eb8cea9Copy full SHA for eb8cea9
airbyte_cdk/utils/docker.py
@@ -52,16 +52,18 @@ def _build_image(
52
f"io.airbyte.version={metadata.data.dockerImageTag}",
53
"--label",
54
f"io.airbyte.name={metadata.data.dockerRepository}",
55
- "-t",
56
- tag,
57
- str(context_dir),
58
]
59
if build_args:
60
for key, value in build_args.items():
61
if value is not None:
62
docker_args.append(f"--build-arg={key}={value}")
63
else:
64
docker_args.append(f"--build-arg={key}")
+ docker_args.extend([
+ "-t",
+ tag,
65
+ str(context_dir),
66
+ ])
67
68
print(f"Building image: {tag} ({arch})")
69
try:
0 commit comments