@devkong/cli 0.0.64 → 0.0.65
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.js +1 -1
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -87893,7 +87893,7 @@ var PublishVersionCommand = class {
|
|
|
87893
87893
|
return repoName === "docker-registry:5000" ? "localhost:5000" : repoName;
|
|
87894
87894
|
}
|
|
87895
87895
|
dockerBuildCmdText(imageName) {
|
|
87896
|
-
return `${this.wslPrefix} docker build -t ${imageName} -f Dockerfile .`;
|
|
87896
|
+
return `${this.wslPrefix} docker build --network=host -t ${imageName} -f Dockerfile .`;
|
|
87897
87897
|
}
|
|
87898
87898
|
dockerPushCmdText(imageName) {
|
|
87899
87899
|
return `${this.wslPrefix} docker push ${imageName}`;
|