openethereum/scripts/docker-build.sh
Denis S. Soldatov aka General-Beck 69561da15f fix docker build and snapcraft
2017-07-17 12:06:32 +03:00

7 lines
251 B
Bash

#!/bin/bash
cd docker/hub
if [ "$1" == "latest" ]; then DOCKER_BUILD_TAG="beta-release"; fi
echo "Docker build tag: " $DOCKER_BUILD_TAG
docker build --build-arg BUILD_TAG=$DOCKER_BUILD_TAG --no-cache=true --tag $2/parity:$1 .
docker push $2/parity:$1