github.com/cloudfoundry-attic/garden-linux@v0.333.2-candidate/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        "type": "shell",
    18        "inline": "useradd -m -U alice"
    19     }
    20   ]
    21  }
    22