File tree Expand file tree Collapse file tree 2 files changed +8
-8
lines changed
Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ GOTOOLS = \
33 github.com/Masterminds/glide
44PACKAGES =$(shell go list ./... | grep -v '/vendor/')
55BUILD_TAGS? =ethermint
6+ VERSION_TAG =0.2.0
67
78all : install test
89
@@ -30,13 +31,11 @@ docker_push_develop:
3031 docker push " tendermint/ethermint:develop"
3132
3233docker_build :
33- # TAG=0.2.0
34- docker build -t " tendermint/ethermint" -t " tendermint/ethermint:$( TAG) " -f scripts/docker/Dockerfile .
34+ docker build -t " tendermint/ethermint" -t " tendermint/ethermint:$( VERSION_TAG) " -f scripts/docker/Dockerfile .
3535
3636docker_push :
37- # TAG=0.2.0
3837 docker push " tendermint/ethermint:latest"
39- docker push " tendermint/ethermint:$( TAG ) "
38+ docker push " tendermint/ethermint:$( VERSION_TAG ) "
4039
4140clean :
4241 @rm -rf build/
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ FROM alpine:3.6
22
33# This is the release of ethermint to pull in.
44ENV EM_VERSION 0.2.0
5- ENV EM_SHA256SUM da34234755937140dcd953afcc965555fad7e05afd546711bc5bdc2df3d54226
5+ ENV EM_SHA256SUM d9d003eec74e05102f10b40be611445ec3179a943c58dd27d5c97a4a43f65f15
66
77ENV DATA_ROOT /ethermint
88
@@ -19,9 +19,10 @@ RUN mkdir -p $DATA_ROOT && \
1919# could execute bash commands.
2020RUN apk add --no-cache bash
2121
22- RUN wget https://s3.eu-central-1.amazonaws.com/ethermint/${EM_VERSION}/ethermint_${EM_VERSION}_ethermint-linux-amd64.zip && \
23- echo "${EM_SHA256SUM} tendermint_${TM_VERSION}_linux_amd64.zip" | sha256sum -c && \
24- unzip -d /bin ethermint_${TM_VERSION}_ethermint-linux-amd64.zip && \
22+ RUN apk add --no-cache openssl && \
23+ wget https://s3.eu-central-1.amazonaws.com/ethermint/${EM_VERSION}/ethermint_${EM_VERSION}_ethermint-linux-amd64.zip && \
24+ echo "${EM_SHA256SUM} ethermint_${EM_VERSION}_ethermint-linux-amd64.zip" | sha256sum -c && \
25+ unzip -d /bin ethermint_${EM_VERSION}_ethermint-linux-amd64.zip && \
2526 rm -f ethermint_${EM_VERSION}_ethermint-linux-amd64.zip
2627
2728# Expose the data directory as a volume since there's mutable state in there
You can’t perform that action at this time.
0 commit comments