14 lines
317 B
Bash
Executable File
14 lines
317 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# TODO
|
|
# This is meant to be run on a machine with harmony development tools installed (cargo, etc)
|
|
|
|
DOCKER_TAG="${DOCKER_TAG:-dev}"
|
|
|
|
cargo build --release
|
|
|
|
cp ../target/release/harmony-node-readiness-endpoint .
|
|
|
|
docker build . -t hub.nationtech.io/harmony/harmony-node-readiness-endpoint:${DOCKER_TAG}
|
|
|