terraform/website/source/docs/enterprise/packer/builds/installing-software.html.md

33 lines
1014 B
Markdown
Raw Normal View History

2017-03-21 23:01:58 +01:00
---
2017-04-03 19:53:38 +02:00
layout: "enterprise"
2017-03-22 18:31:44 +01:00
page_title: "Installing Software with Packer"
2017-04-03 19:53:38 +02:00
sidebar_current: "docs-enterprise-packerbuilds-installing"
2017-03-22 18:31:44 +01:00
description: |-
Installing software with Packer.
2017-03-21 23:01:58 +01:00
---
# Installing Software
Please review the [Packer Build Environment](/docs/enterprise/packer/builds/build-environment.html)
2017-03-21 23:01:58 +01:00
specification for important information on isolation, security, and hardware
limitations before continuing.
In some cases, it may be necessary to install custom software to build your
artifact using Packer. The easiest way to install software on the Packer builder
is via the `shell-local` provisioner. This will execute commands on the host
machine running Packer.
{
"provisioners": [
{
"type": "shell-local",
"command": "sudo apt-get install -y customsoftware"
}
]
}
Please note that nothing is persisted between Packer builds, so you will need
to install custom software on each run.
The Packer builders run the latest version of Ubuntu LTS.