diff --git a/README.md b/README.md index f228483..77f7e4d 100644 --- a/README.md +++ b/README.md @@ -106,7 +106,9 @@ $ dockerfile-json Dockerfile | jq . "CmdLine": [ "echo \"Hello world\" > abc" ], - "Name": "run", + "Files": null, + "FlagsUsed": [], + "Name": "RUN", "PrependShell": true } ] @@ -141,7 +143,9 @@ $ dockerfile-json Dockerfile | jq . "CmdLine": [ "echo \"foo\" > bar" ], - "Name": "run", + "Files": null, + "FlagsUsed": [], + "Name": "RUN", "PrependShell": true } ] @@ -171,18 +175,20 @@ $ dockerfile-json Dockerfile | jq . { "Chmod": "", "Chown": "nobody:nobody", + "DestPath": ".", "From": "build", - "Name": "copy", - "SourcesAndDest": [ - "abc", - "." + "Name": "COPY", + "SourceContents": null, + "SourcePaths": [ + "abc" ] }, { "CmdLine": [ "echo" ], - "Name": "cmd", + "Files": null, + "Name": "CMD", "PrependShell": false } ] diff --git a/package.json b/package.json index a29ab30..3c7d654 100644 --- a/package.json +++ b/package.json @@ -1,4 +1,4 @@ { "name": "dockerfile-json", - "version": "1.0.7" + "version": "1.0.8" }