Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,8 @@
<docker.test-registry>${docker.upstream-registry}</docker.test-registry> <!-- Registry for integration test dependencies -->
<docker.test-tag>${docker.upstream-tag}</docker.test-tag> <!-- Tag for integration test dependencies -->
<dockerfile-maven-plugin.version>1.4.13</dockerfile-maven-plugin.version>
<!-- Since this property is used by docker-arm, default is arm-->
<docker.platforms>linux/arm64</docker.platforms>
<!-- The name of the docker file to run. -->
<docker.file>Dockerfile</docker.file>
<!-- Pull the latest base image or use a local image. -->
Expand Down Expand Up @@ -1500,6 +1502,11 @@
<name>confluentinc/${project.artifactId}</name>
<registry>${docker.registry}</registry>
<build>
<buildx>
<platforms>
<platform>${docker.platforms}</platform>
</platforms>
</buildx>
<args>
<ARTIFACT_ID>${project.artifactId}</ARTIFACT_ID>
<BUILD_NUMBER>${BUILD_NUMBER}</BUILD_NUMBER>
Expand Down Expand Up @@ -1527,6 +1534,8 @@
<tags>
<tag>${docker.tag}</tag>
</tags>


</build>
</image>
</images>
Expand Down