mirror of
https://github.com/alexgo-io/stacks-subnets.git
synced 2026-01-12 22:43:44 +08:00
16 lines
317 B
Bash
Executable File
16 lines
317 B
Bash
Executable File
#!/bin/bash
|
|
|
|
script_path="$(dirname "$0")"
|
|
src_dir="$(dirname "$script_path")"
|
|
cd "$src_dir"
|
|
|
|
rust_image="rust:1.42.0-stretch"
|
|
|
|
docker run \
|
|
--volume `pwd`:/build \
|
|
--workdir /build \
|
|
--tty \
|
|
--env "DIST_TARGET_FILTER=$DIST_TARGET_FILTER" \
|
|
$rust_image \
|
|
bash "$(basename "$script_path")/start-builds.sh"
|