6438048f40
Update methods to be refactored into util package to be used in many locations. Add end to end test of ytsync for CI
8 lines
No EOL
180 B
Bash
Executable file
8 lines
No EOL
180 B
Bash
Executable file
#!/bin/bash
|
|
if [ $# -eq 0 ]
|
|
then
|
|
echo "No docker tag argument supplied. Use './build.sh <tag>'"
|
|
exit 1
|
|
fi
|
|
docker build --tag lbry/lbrycrd:$1 .
|
|
docker push lbry/lbrycrd:$1 |