1
0
Fork 0
firefox/taskcluster/docker/image_builder/build-kaniko.sh
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

13 lines
253 B
Bash
Executable file

#!/bin/sh
set -ex
ARCH="$1"
git clone --no-checkout --depth=1 --branch=v1.23.0 https://github.com/GoogleContainerTools/kaniko .
git checkout 98df8ebfc7834a720c83b81bd0b1d54f4f480477
if [ "$ARCH" = arm64 ]; then
make GOARCH=arm64
else
make
fi