mirror of
https://github.com/dokku/dokku.git
synced 2025-12-28 16:06:40 +01:00
33 lines
690 B
JSON
33 lines
690 B
JSON
{
|
|
"builders": [
|
|
{
|
|
"type": "digitalocean",
|
|
"region": "nyc3",
|
|
"image": "ubuntu-14-04-x64"
|
|
}
|
|
],
|
|
"provisioners": [
|
|
{
|
|
"type": "file",
|
|
"source": "deb.mk",
|
|
"destination": "/tmp/Makefile"
|
|
},
|
|
{
|
|
"type": "shell",
|
|
"inline": [
|
|
"echo '--> Waiting 30 seconds for core services to be available'",
|
|
"sleep 30",
|
|
|
|
"echo '--> Updating apt repositories'",
|
|
"sudo apt-get update -qq > /dev/null",
|
|
|
|
"echo '--> Installing make requirement'",
|
|
"sudo apt-get -qq -y install build-essential",
|
|
|
|
"cd /tmp && make install-from-deb",
|
|
"rm /root/.ssh/authorized_keys"
|
|
]
|
|
}
|
|
]
|
|
}
|