Skip to content

Instantly share code, notes, and snippets.

@nacyot
Created September 10, 2016 02:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nacyot/e753b663e9e90cbeeb93b0906e79df8f to your computer and use it in GitHub Desktop.
Save nacyot/e753b663e9e90cbeeb93b0906e79df8f to your computer and use it in GitHub Desktop.
packer example
{
"builders": [{
"type": "docker",
"image": "ubuntu:14.04",
"export_path": "nacyot-ubuntu-wget.tar"
}],
"provisioners": [{
"type": "shell",
"inline": [
"apt-get update",
"apt-get install -y wget"
]
}],
"post-processors": [{
"type": "docker-import",
"repository": "nacyot/ubuntu",
"tag": "wget"
}]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment