forked from cerc-io/stack-orchestrator
988be0ef9a
* Use the latest stable optimism release * Remove unnecessary repos from repo-list * Add op-proposer service to fixturenet-optimism stack * Add jq and bash to op-proposer image * Update instructions * Update op-batcher and op-geth commands
10 lines
394 B
Bash
Executable File
10 lines
394 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# Build cerc/optimism-op-batcher
|
|
# TODO: use upstream Dockerfile once its buildx-specific content has been removed
|
|
|
|
source ${CERC_CONTAINER_BASE_DIR}/build-base.sh
|
|
|
|
SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
|
|
docker build -t cerc/optimism-op-batcher:local -f ${SCRIPT_DIR}/Dockerfile ${build_command_args} ${CERC_REPO_BASE_DIR}/optimism
|