Skip to content

Commit

Permalink
Release 1.0.8
Browse files Browse the repository at this point in the history
  • Loading branch information
sgreben committed Nov 5, 2021
1 parent fc75f8a commit d3bb829
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 8 deletions.
20 changes: 13 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,9 @@ $ dockerfile-json Dockerfile | jq .
"CmdLine": [
"echo \"Hello world\" > abc"
],
"Name": "run",
"Files": null,
"FlagsUsed": [],
"Name": "RUN",
"PrependShell": true
}
]
Expand Down Expand Up @@ -141,7 +143,9 @@ $ dockerfile-json Dockerfile | jq .
"CmdLine": [
"echo \"foo\" > bar"
],
"Name": "run",
"Files": null,
"FlagsUsed": [],
"Name": "RUN",
"PrependShell": true
}
]
Expand Down Expand Up @@ -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
}
]
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"name": "dockerfile-json",
"version": "1.0.7"
"version": "1.0.8"
}

0 comments on commit d3bb829

Please sign in to comment.