diff options
| -rw-r--r-- | CHANGELOG.md | 15 | ||||
| -rw-r--r-- | Containerfile | 2 |
2 files changed, 16 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 7e4657e..824bac4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,3 +11,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - A new option, `-label` is introduced to allow setting custom labels with their values on the exporter. + +### Changed + +- The Containerfile now builds using `alpine:edge`, to ensure the latest Go + features are available. + +## [1.0.1] - 2024-11-27 + +### Changed + +- Something, I guess + +## [1.0.0] - 2024-11-27 + +Initial release diff --git a/Containerfile b/Containerfile index c197341..ab739df 100644 --- a/Containerfile +++ b/Containerfile @@ -1,4 +1,4 @@ -FROM alpine:latest AS builder +FROM alpine:edge AS builder RUN apk add --no-cache go |
