github.com/darmach/terratest@v0.34.8-0.20210517103231-80931f95e3ff/examples/packer-hello-world-example/build.json (about)

     1  {
     2    "builders": [{
     3      "name": "ubuntu-docker",
     4      "type": "docker",
     5      "image": "gruntwork/ubuntu-test:16.04",
     6      "commit": true,
     7      "changes": ["ENTRYPOINT [\"\"]"]
     8    }],
     9    "provisioners": [{
    10      "type": "shell",
    11      "inline": ["echo 'Hello, World!' > /test.txt"]
    12    }],
    13    "post-processors": [{
    14      "type": "docker-tag",
    15      "repository": "gruntwork/packer-hello-world-example",
    16      "tag": "latest"
    17    }]
    18  }