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 af62125 commit 8fe75b4Copy full SHA for 8fe75b4
imagetool/src/main/java/com/oracle/weblogic/imagetool/cli/menu/CommonOptions.java
@@ -125,8 +125,8 @@ BuildCommand getInitialBuildCmd(String contextFolder) {
125
.tag(imageTag)
126
.network(buildNetwork)
127
.pull(buildPull)
128
- .buildArg("http_proxy", httpProxyUrl)
129
- .buildArg("https_proxy", httpsProxyUrl)
+ .buildArg("http_proxy", httpProxyUrl, httpProxyUrl != null && httpProxyUrl.contains("@"))
+ .buildArg("https_proxy", httpsProxyUrl, httpsProxyUrl != null && httpsProxyUrl.contains("@"))
130
.buildArg("no_proxy", nonProxyHosts);
131
132
if (dockerPath != null && Files.isExecutable(dockerPath)) {
0 commit comments