@cartesi/cli 0.14.2 → 0.14.3
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/dist/commands/build.js +1 -1
- package/oclif.manifest.json +1 -1
- package/package.json +1 -1
package/dist/commands/build.js
CHANGED
|
@@ -182,7 +182,7 @@ Update your application Dockerfile using one of the templates at https://github.
|
|
|
182
182
|
// get and validate image info
|
|
183
183
|
const imageInfo = await this.getImageInfo(appImage);
|
|
184
184
|
// resolve sdk version
|
|
185
|
-
const sdkImage =
|
|
185
|
+
const sdkImage = `${imageInfo.sdkName}:${imageInfo.sdkVersion}`;
|
|
186
186
|
try {
|
|
187
187
|
// create docker tarball for image specified
|
|
188
188
|
await this.createTarball(appImage, tarPath);
|
package/oclif.manifest.json
CHANGED