From ff60071b7de0c96aa1cf555ecafb70cc44e3c7f0 Mon Sep 17 00:00:00 2001 From: edouard Date: Thu, 29 Dec 2022 10:03:43 +0100 Subject: [PATCH] lntop v0.4.0 --- README.md | 2 +- docker/lntop/Dockerfile | 6 +++--- main.go | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index b80a3b5..816ee11 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ ## Install -Require the [go programming language](https://golang.org/) (version >= 1.13) +Require the [go programming language](https://golang.org/) (version >= 1.19.1) **Raspberry Pi users: be aware that Raspbian ships with Go 1.11** ( see [#30](https://github.com/edouardparis/lntop/issues/30) ) diff --git a/docker/lntop/Dockerfile b/docker/lntop/Dockerfile index 3e60089..2ccb830 100644 --- a/docker/lntop/Dockerfile +++ b/docker/lntop/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.13-alpine as builder +FROM golang:1.19-alpine as builder # install build dependencies RUN apk add --no-cache --update git gcc musl-dev @@ -19,7 +19,7 @@ RUN go install ./... # --------------------------------------------------------------------------------------------------------------------------- -FROM golang:1.13-alpine as final +FROM golang:1.19-alpine as final RUN apk add --no-cache \ bash fish \ @@ -37,4 +37,4 @@ COPY --from=builder /go/bin/lntop /bin/ WORKDIR /root -COPY "home" . \ No newline at end of file +COPY "home" . diff --git a/main.go b/main.go index 771b52f..2230720 100644 --- a/main.go +++ b/main.go @@ -16,7 +16,7 @@ import ( "github.com/edouardparis/lntop/cli" ) -const Version = "v0.3.1" +const Version = "v0.4.0" func main() { err := cli.New(Version).Run(os.Args)