mirror of
https://github.com/elastic/eland.git
synced 2025-07-11 00:02:14 +08:00
* Fix Docker image build on Linux * Build Docker images in CI * Fix bash syntax * Only load, not push * Parallelize docker build It's currently the slowest step. * Only build Linux images
12 lines
279 B
Bash
12 lines
279 B
Bash
#!/usr/bin/env bash
|
|
|
|
set -eo pipefail
|
|
export LC_ALL=en_US.UTF-8
|
|
|
|
echo "--- Building the Wolfi image"
|
|
# Building the linux/arm64 image takes about one hour on Buildkite, which is too slow
|
|
docker build --file Dockerfile.wolfi .
|
|
|
|
echo "--- Building the public image"
|
|
docker build .
|