forked from eclipse-jkube/jkube
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(docker-build): Ensure Docker build arguments from properties are …
…used during images pre-pulling (2915) fix(docker-build): Ensure Docker build arguments from properties are used during images pre-pulling Signed-off-by: Sun Seng David TAN <[email protected]> --- test(docker-build): add tests for merging build arguments in BuildService Signed-off-by: Sun Seng David TAN <[email protected]> --- refactor: replace custom isEmpty with StringUtils.isNotBlank Signed-off-by: Sun Seng David TAN <[email protected]>
- Loading branch information
Showing
6 changed files
with
232 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7 changes: 7 additions & 0 deletions
7
...ources/org/eclipse/jkube/kit/build/api/helper/Dockerfile_multi_stage_with_args_no_default
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
ARG VERSION | ||
FROM fabric8/s2i-java:$VERSION AS BUILD | ||
ARG FULL_IMAGE | ||
FROM $FULL_IMAGE AS DEPLOYABLE | ||
ARG REPO_1 | ||
ARG IMAGE-1 | ||
FROM $REPO_1/${IMAGE-1}:$VERSION |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.