@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.
Files changed (2) hide show
  1. package/index.js +1 -1
  2. 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}`;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@devkong/cli",
3
- "version": "0.0.64",
3
+ "version": "0.0.65",
4
4
  "type": "commonjs",
5
5
  "main": "./index.js",
6
6
  "typings": "./index.d.ts",