We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 526573b commit 223b720Copy full SHA for 223b720
Dockerfile
@@ -3,9 +3,9 @@ FROM golang:1.10-stretch
3
MAINTAINER Gabriel Garrido
4
5
RUN apt update
6
-RUN apt install rsync -y
+RUN apt install rsync wget -y
7
8
-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"
9
RUN chmod a+x /usr/bin/lightchain
10
11
COPY ./scripts/docker.sh /root/entrypoint.sh
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"
12
13
var versionCmd = &cobra.Command{
14
Use: "version",
0 commit comments