Files
Yuhao Zhou e0bbe9ee50
Some checks failed
Build kernel module for TrueNAS / build-and-run (push) Has been cancelled
Improve the disk standby check (#40)
2024-11-01 21:36:19 +08:00

16 lines
306 B
Bash

set -x
if [[ ! -d ./build ]]; then
mkdir build
fi
docker build --tag bookworm-build .
docker run \
--rm \
--mount type=bind,source=$(pwd)/build,target=/build \
--mount type=bind,source=$(pwd)/build.sh,target=/build.sh \
bookworm-build \
bash -c "cd /build && bash /build.sh $1"