github.com/StackPointCloud/packer@v0.10.2-0.20180716202532-b28098e0f79b/test/fixtures/provisioner-ansible/docker.json (about)

     1  {
     2      "variables": {},
     3      "provisioners": [
     4        {
     5          "type": "shell",
     6          "inline": [
     7            "apt-get update",
     8            "apt-get -y install python"
     9          ]
    10        }, {
    11          "type":  "ansible",
    12          "playbook_file": "./playbook.yml",
    13          "extra_arguments": [
    14          ],
    15          "sftp_command": "/usr/bin/false",
    16          "use_sftp": false
    17        }
    18      ],
    19      "builders": [
    20        {
    21          "type": "docker",
    22          "image": "debian:jessie",
    23          "discard": true
    24        }
    25      ]
    26  }