From 809e0e8c5933604ba8b2d096803ada7c5ec4dfd3 Mon Sep 17 00:00:00 2001 From: Anton Kaliaev Date: Thu, 4 May 2017 13:32:24 +0400 Subject: [PATCH] update Dockerfile [ci skip] [circleci skip] --- DOCKER/Dockerfile | 4 ++-- DOCKER/Makefile | 6 ++++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/DOCKER/Dockerfile b/DOCKER/Dockerfile index 08a7b2674..a5f734f19 100644 --- a/DOCKER/Dockerfile +++ b/DOCKER/Dockerfile @@ -1,8 +1,8 @@ FROM alpine:3.5 # This is the release of tendermint to pull in. -ENV TM_VERSION 0.9.0 -ENV TM_SHA256SUM 697033ea0f34f8b34a8a2b74c4dd730b47dd4efcfce65e53e953bdae8eb14364 +ENV TM_VERSION 0.9.1 +ENV TM_SHA256SUM da34234755937140dcd953afcc965555fad7e05afd546711bc5bdc2df3d54226 # Tendermint will be looking for genesis file in /tendermint (unless you change # `genesis_file` in config.toml). You can put your config.toml and private diff --git a/DOCKER/Makefile b/DOCKER/Makefile index 092233017..612b9a694 100644 --- a/DOCKER/Makefile +++ b/DOCKER/Makefile @@ -1,10 +1,12 @@ build: # TAG=0.8.0 TAG_NO_PATCH=0.8 - docker build -t "tendermint/tendermint" -t "tendermint/tendermint:$TAG" -t "tendermint/tendermint:$TAG_NO_PATCH" . + docker build -t "tendermint/tendermint" -t "tendermint/tendermint:$(TAG)" -t "tendermint/tendermint:$(TAG_NO_PATCH)" . push: # TAG=0.8.0 TAG_NO_PATCH=0.8 - docker push "tendermint/tendermint" "tendermint/tendermint:$TAG" "tendermint/tendermint:$TAG_NO_PATCH" + docker push "tendermint/tendermint:latest" + docker push "tendermint/tendermint:$(TAG)" + docker push "tendermint/tendermint:$(TAG_NO_PATCH)" build_develop: docker build -t "tendermint/tendermint:develop" -f Dockerfile.develop .