Skip to content

Commit

Permalink
chore(NA): skip docker build if docker binary is not available (#84154)
Browse files Browse the repository at this point in the history
  • Loading branch information
mistic authored Nov 24, 2020
1 parent ac1cf7d commit e559a61
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .ci/build_docker.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,8 @@ cd "$(dirname "${0}")"
cp /usr/local/bin/runbld ./
cp /usr/local/bin/bash_standard_lib.sh ./

docker build -t kibana-ci -f ./Dockerfile .
if which docker >/dev/null; then
docker build -t kibana-ci -f ./Dockerfile .
else
echo "Docker binary is not available. Skipping the docker build this time."
fi

0 comments on commit e559a61

Please sign in to comment.