1
0
mirror of https://github.com/zokradonh/kopano-docker.git synced 2026-08-24 14:45:34 +00:00

add all ci relevant tools to the build helper (#290)

also push the build helper into the docker hub

Signed-off-by: Felix Bartels <felix@host-consultants.de>
This commit is contained in:
Felix Bartels
2019-11-21 08:37:01 +01:00
committed by GitHub
parent ead0acfdb0
commit 3165430f72
5 changed files with 50 additions and 16 deletions
+10 -4
View File
@@ -3,11 +3,12 @@
set -euo pipefail
IFS=$'\n\t'
HADOLINT_VERSION=1.17.1
DOCKER_COMPOSE_VERSION=1.23.2
TRIVY_VERSION=0.1.1
GOSS_VERSION=0.3.7
COMMANDER_VERSION=1.2.1
DOCKER_COMPOSE_VERSION=1.23.2
GOSS_VERSION=0.3.7
HADOLINT_VERSION=1.17.1
REG_VERSION=0.16.1
TRIVY_VERSION=0.1.1
progname=$(basename "$0")
tempdir=$(mktemp -d "/tmp/$progname.XXXXXX")
@@ -53,6 +54,11 @@ if ! command -v dccommander > /dev/null; then
sudo chmod +rx /usr/local/bin/dccommander
fi
if ! command -v reg > /dev/null; then
sudo curl -L https://github.com/genuinetools/reg/releases/download/v$REG_VERSION/reg-linux-amd64 -o /usr/local/bin/reg
sudo chmod +rx /usr/local/bin/reg
fi
if ! command -v expect > /dev/null; then
sudo apt update && sudo apt install -y expect
fi