@leverege/build-tools 2.85.0-beta.2 → 2.85.0-beta.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@leverege/build-tools",
3
- "version": "2.85.0-beta.2",
3
+ "version": "2.85.0-beta.3",
4
4
  "description": "A collection of build / support tools for Leverege developers",
5
5
  "main": "index.js",
6
6
  "repository": {
package/src/Docker.mjs CHANGED
@@ -239,7 +239,7 @@ const buildContainerImage = async ( repoDescr ) => {
239
239
  cloudBuildSteps = cloudBuildStepsSingleArch
240
240
  imagePlatformString = 'linux/amd64'
241
241
  }
242
- log( `imagePlatformString => ${imagePlatformString}` )
242
+
243
243
  const cbst = handlebars.compile( cloudBuildSteps, { noEscape : true } )
244
244
  const cbs = cbst( { artifactProject, artifactRegistry, imageName, imagePlatform : imagePlatformString, imageVersion, imageInfoTag, } )
245
245
  fs.writeFileSync( cloudBuildFile, cbs )
@@ -243,7 +243,6 @@ if ( isNodeJsProject ) {
243
243
  log( `
244
244
  ${chalk.green.bold( 'NodeJS Docker Information:' )}
245
245
  NodeImage: ${chalk.green.bold( dockerInfo.imageBase || `node:${dockerInfo.nodeimage}` )}
246
- Platform: ${chalk.green.bold( dockerInfo.imagePlatform )}
247
246
  Docker Env: ${chalk.green.bold( dockerInfo.buildEnv || 'alpine' )}
248
247
  AddedPkgs: ${chalk.green.bold( dockerInfo.apkadds )}
249
248
  Run User: ${chalk.green.bold( dockerInfo.runuser )}
@@ -258,7 +257,6 @@ if ( isPythonProject ) {
258
257
  log( `
259
258
  ${chalk.green.bold( 'Python Docker Information:' )}
260
259
  BaseImage: ${chalk.green.bold( dockerInfo.imageBase || `node:${dockerInfo.nodeimage}` )}
261
- Platform: ${chalk.green.bold( dockerInfo.imagePlatform )}
262
260
  Python Ver: ${chalk.green.bold( dockerInfo.pythonVersion )}
263
261
  Run User: ${chalk.green.bold( dockerInfo.runuser )}
264
262
  DateStamp: ${chalk.green.bold( dockerInfo.date )}