5 lines
262 B
Bash
5 lines
262 B
Bash
|
#!/usr/bin/env bash
|
||
|
# Build a local version of the foundry-rs/foundry image
|
||
|
source ${CERC_CONTAINER_BASE_DIR}/build-base.sh
|
||
|
docker build -t cerc/foundry:local -f ${CERC_REPO_BASE_DIR}/foundry/Dockerfile-debian ${build_command_args} ${CERC_REPO_BASE_DIR}/foundry
|