mirror of
https://github.com/aljazceru/cyphernode.git
synced 2025-12-24 16:14:57 +01:00
11 lines
137 B
Bash
Executable File
11 lines
137 B
Bash
Executable File
#!/bin/sh
|
|
|
|
. ./trace.sh
|
|
|
|
build_docker_image() {
|
|
|
|
trace "building docker image: $1 with tag $2:latest"
|
|
docker build $1 -t $2:latest
|
|
|
|
}
|