lntop v0.4.0

pull/106/head v0.4.0
edouard 1 year ago
parent c6748d321f
commit ff60071b7d

@ -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) )

@ -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" .
COPY "home" .

@ -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)

Loading…
Cancel
Save