Add version 1.2.2; Documentation is OBSOLETE and only refers to 1.0. Retire armhf and i386

This commit is contained in:
2025-09-21 23:40:13 +02:00
parent 3ab8239715
commit f8f9462f5d
2 changed files with 18 additions and 11 deletions

View File

@@ -2,6 +2,7 @@
Docker build of Bredbandskollen's CLI client (bbk-cli) based on Alpine Linux
For more information, read on [here](http://www.bredbandskollen.se/bredbandskollen-cli/) and [here](https://github.com/dotse/bbk).
Note that as of 2025-09, documentation still only refers to 1.0, while repository has moved on and latest version seems to be 1.2.2.
[License](LICENSE) attached with this image doesn't apply to the software that is bundled in the image build.
This repository is not distributing a copy of the software and therefore doesn't include copy of the [license](https://github.com/dotse/bbk/blob/master/src/LICENSE).
@@ -12,15 +13,13 @@ This repository is not distributing a copy of the software and therefore doesn't
##### Images
```
nlss/bbk-cli:latest
nlss/bbk-cli:1.0
nlss/bbk-cli:1.2
```
Image is tagged with software version. Image might be updated whilst version of the bundled software remains the same.
##### Supported platforms
- linux/i386
- linux/amd64
- linux/armhf
- linux/aarch64
Note: ARM support is questionable and untested.

View File

@@ -1,5 +1,5 @@
group "default" {
targets = ["1_0"]
targets = ["1_0", "1_2_2"]
}
target "build-dockerfile" {
@@ -7,7 +7,7 @@ target "build-dockerfile" {
}
target "build-platforms" {
platforms = ["linux/i386", "linux/amd64", "linux/armhf", "linux/aarch64"]
platforms = ["linux/amd64", "linux/aarch64"]
}
target "build-common" {
@@ -16,8 +16,16 @@ target "build-common" {
target "1_0" {
inherits = ["build-dockerfile", "build-platforms", "build-common"]
tags = ["docker.io/nlss/bbk-cli:1", "docker.io/nlss/bbk-cli:1.0", "docker.io/nlss/bbk-cli:latest"]
tags = ["docker.io/nlss/bbk-cli:1.0"]
args = {
BBKCLI_VERSION = "1.0"
}
}
target "1_2_2" {
inherits = ["build-dockerfile", "build-platforms", "build-common"]
tags = ["docker.io/nlss/bbk-cli:1", "docker.io/nlss/bbk-cli:1.2", "docker.io/nlss/bbk-cli:1.2.2", "docker.io/nlss/bbk-cli:latest"]
args = {
BBKCLI_VERSION = "1.2.2"
}
}