4c66a021ec
[ci skip]
7 lines
218 B
Bash
7 lines
218 B
Bash
#!/bin/bash
|
|
cd docker/hub
|
|
if [ "$1" == "latest" ]; then DOCKER_BUILD_TAG="beta-release"; fi
|
|
docker build --build-arg BUILD_TAG=$DOCKER_BUILD_TAG --no-cache=true --tag ethcore/parity:$1 .
|
|
docker push ethcore/parity:$1
|
|
|