fix image id inspection

This commit is contained in:
Philipp Kunz 2016-06-07 06:14:36 +02:00
parent 87d8a4401e
commit 7ca0171658
2 changed files with 3 additions and 3 deletions

File diff suppressed because one or more lines are too long

View File

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