mirror of
https://github.com/cosmos/cosmjs.git
synced 2025-03-10 21:49:15 +00:00
12 lines
250 B
Bash
Executable File
12 lines
250 B
Bash
Executable File
#!/bin/bash
|
|
set -o errexit -o nounset -o pipefail
|
|
|
|
SCRIPT_DIR="$(realpath "$(dirname "$0")")"
|
|
source "$SCRIPT_DIR"/env
|
|
|
|
|
|
docker run --rm \
|
|
--mount type=bind,source="$SCRIPT_DIR/template",target=/root \
|
|
"$REPOSITORY:$VERSION" \
|
|
./setup_wasmd.sh
|