You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
231 B
19 lines
231 B
4 years ago
|
#!/bin/bash
|
||
|
|
||
|
set -ex
|
||
|
|
||
|
# Print some environment info in case it's useful for troubleshooting.
|
||
|
id
|
||
|
pwd
|
||
|
df -h
|
||
|
env
|
||
|
docker info
|
||
|
docker version
|
||
|
|
||
|
# Install build dependencies.
|
||
|
deps=(
|
||
|
jq
|
||
|
)
|
||
|
apt-get update
|
||
|
apt-get install -y "${deps[@]}"
|