Prathamesh Musale
e908b5a7b3
Part of [Create a stack to run a BSC node](https://www.notion.so/Create-a-stack-to-run-a-BSC-node-5740b35b02974661a0237dcf57ab8150) Add a stack to run a BSC node for mainnet or testnet in various modes (full, archive, fast); synced from genesis or a snapshot Reviewed-on: #1 Co-authored-by: Prathamesh Musale <prathamesh.musale0@gmail.com> Co-committed-by: Prathamesh Musale <prathamesh.musale0@gmail.com>
8 lines
244 B
Bash
Executable File
8 lines
244 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
source ${CERC_CONTAINER_BASE_DIR}/build-base.sh
|
|
SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
|
|
|
|
# Build cerc/bsc-geth
|
|
docker build -t cerc/bsc-geth:local ${build_command_args} ${SCRIPT_DIR}
|