github.com/schwarzm/garden-linux@v0.0.0-20150507151835-33bca2147c47/packer/rootfs/ubuntu/ubuntu.json (about) 1 { 2 "builders": [ 3 { 4 "type": "docker", 5 "image": "ubuntu:14.04", 6 "export_path": "rootfs/ubuntu/ubuntu.tar" 7 } 8 ], 9 "provisioners": [ 10 { 11 "type": "shell", 12 "inline": [ 13 "apt-get update && apt-get -y install iptables quota && apt-get clean" 14 ] 15 } 16 ] 17 } 18