openethereum/scripts/docker-build.sh
Denis S. Soldatov aka General-Beck 1959f0ae12 fix docker-build
[ci skip]
2017-03-14 20:21:51 +03:00

6 lines
217 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