2
0
mirror of https://github.com/edouardparis/lntop synced 2024-11-08 01:10:32 +00:00

lntop v0.4.0

This commit is contained in:
edouard 2022-12-29 10:03:43 +01:00
parent c6748d321f
commit ff60071b7d
3 changed files with 5 additions and 5 deletions

View File

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

View File

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

View File

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