Skip to content

Instantly share code, notes, and snippets.

@mwhooker
Created September 22, 2016 22:41
Show Gist options
  • Save mwhooker/503a9f2b7bfb394ea5566ee31a72f4b6 to your computer and use it in GitHub Desktop.
Save mwhooker/503a9f2b7bfb394ea5566ee31a72f4b6 to your computer and use it in GitHub Desktop.
{
"builders": [
{
"export_path": "image.tar",
"image": "alpine",
"run_command": [
"-d",
"-i",
"-t",
"{{.Image}}",
"/bin/sh"
],
"type": "docker"
}
],
"provisioners": [
{
"inline": [
"echo foo > /root/foo"
],
"type": "shell"
},
{
"destination": "/tmp/foo",
"direction": "download",
"source": "/root/",
"type": "file"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment