mirror of
https://github.com/moby/buildkit.git
synced 2026-08-10 01:27:55 +00:00
15 lines
221 B
Bash
Executable File
15 lines
221 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
. $(dirname $0)/util
|
|
set -e
|
|
|
|
: ${PLATFORMS=}
|
|
|
|
platformFlag=""
|
|
if [ -n "$PLATFORMS" ]; then
|
|
platformFlag="--platform=$PLATFORMS"
|
|
fi
|
|
|
|
buildxCmd build $platformFlag $cacheFromFlags \
|
|
$currentcontext
|