mirror of
https://github.com/elastic/kibana.git
synced 2025-04-21 08:19:33 -04:00
14 lines
296 B
Bash
Executable file
14 lines
296 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -euo pipefail
|
|
|
|
cd "$(dirname "${0}")"
|
|
|
|
cp /usr/local/bin/runbld ./
|
|
cp /usr/local/bin/bash_standard_lib.sh ./
|
|
|
|
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
|