github.com/schwarzm/garden-linux@v0.0.0-20150507151835-33bca2147c47/packer/rootfs/busybox/busybox.json (about) 1 { 2 "builders": [ 3 { 4 "type": "docker", 5 "image": "busybox:latest", 6 "export_path": "rootfs/busybox/busybox.tar", 7 "run_command": ["-d", "-i", "-t", "{{.Image}}", "/bin/sh"] 8 } 9 ], 10 "provisioners": [ 11 { 12 "type": "file", 13 "source": "rootfs/busybox/seed", 14 "destination": "/etc/seed" 15 }, 16 { 17 "type": "shell", 18 "inline": "chmod 0644 /etc/seed" 19 } 20 ] 21 } 22