From 223b720528afd2e328a1b51e7e94680a0f7e1349 Mon Sep 17 00:00:00 2001 From: ggarri Date: Thu, 4 Jul 2019 09:48:56 +0200 Subject: [PATCH] [NOTASK] Update version --- Dockerfile | 4 ++-- cmd/lightchain/version.go | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index d716edb..690eb38 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,9 +3,9 @@ FROM golang:1.10-stretch MAINTAINER Gabriel Garrido RUN apt update -RUN apt install rsync -y +RUN apt install rsync wget -y -COPY build/lightchain /usr/bin/lightchain +RUN wget "https://s3.eu-central-1.amazonaws.com/lightstreams-public/lightchain/latest/lightchain-linux-amd64" -O "/usr/bin/lightchain" RUN chmod a+x /usr/bin/lightchain COPY ./scripts/docker.sh /root/entrypoint.sh diff --git a/cmd/lightchain/version.go b/cmd/lightchain/version.go index 407c249..de969a6 100644 --- a/cmd/lightchain/version.go +++ b/cmd/lightchain/version.go @@ -6,9 +6,9 @@ import ( ) const Major = "1" -const Minor = "2" +const Minor = "3" const Fix = "0" -const Verbal = "Rock && Roll" +const Verbal = "Fast && Safe" var versionCmd = &cobra.Command{ Use: "version",