mirror of
https://github.com/corda/corda.git
synced 2025-01-04 20:24:17 +00:00
9 lines
130 B
Bash
9 lines
130 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
set -eux
|
||
|
|
||
|
img="ctesting.azurecr.io/r3/hanode:$(git rev-parse --short HEAD)"
|
||
|
|
||
|
docker build -t $img .
|
||
|
docker push $img
|