github.com/cloudfoundry-attic/garden-linux@v0.333.2-candidate/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 "type": "shell", 22 "inline": "adduser -D alice" 23 } 24 ] 25 } 26