Roy Crihfield
0d63b95f7d
Adds definitions for Plugeth stack and `ipld-eth-db`. Uses cerc-io/stack-orchestrator#851 in tests. Reviewed-on: #14
9 lines
380 B
Bash
Executable File
9 lines
380 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Build cerc/plugeth-statediff
|
|
source ${CERC_CONTAINER_BASE_DIR}/build-base.sh
|
|
# Pass Go auth token if present
|
|
if [[ -n "${CERC_GO_AUTH_TOKEN}" ]]; then
|
|
build_command_args="${build_command_args} --build-arg GIT_VDBTO_TOKEN=${CERC_GO_AUTH_TOKEN}"
|
|
fi
|
|
docker build -t cerc/plugeth-statediff:local ${build_command_args} ${CERC_REPO_BASE_DIR}/plugeth-statediff
|