7f3a33564a
* 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 Former-commit-id: 988be0ef9ab6c4f3b74431ca0bd31c41fa0584b0
10 lines
388 B
Bash
Executable File
10 lines
388 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# Build cerc/optimism-op-node
|
|
# 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-node:local -f ${SCRIPT_DIR}/Dockerfile ${build_command_args} ${CERC_REPO_BASE_DIR}/optimism
|