Compare commits

...

2 Commits

Author SHA1 Message Date
d7e4efc2c0 2.1.38 2016-06-07 06:14:46 +02:00
7ca0171658 fix image id inspection 2016-06-07 06:14:36 +02:00
3 changed files with 4 additions and 4 deletions

File diff suppressed because one or more lines are too long

View File

@@ -1,6 +1,6 @@
{ {
"name": "npmci", "name": "npmci",
"version": "2.1.37", "version": "2.1.38",
"description": "", "description": "",
"main": "dist/index.js", "main": "dist/index.js",
"bin": { "bin": {

View File

@@ -185,7 +185,7 @@ export class Dockerfile {
bashBare("docker push " + this.releaseTag); bashBare("docker push " + this.releaseTag);
} }
getId(){ getId(){
let containerId = bashBare("docker inspect --format=\"{{.Id}}\" " + this.buildTag); let containerId = bashBare("docker inspect --type=image --format=\"{{.Id}}\" " + this.buildTag);
return containerId; return containerId;
}; };
patchContents(){ patchContents(){