diff options
| author | Patrick Spek <p.spek@tyil.nl> | 2024-11-28 09:01:49 +0100 |
|---|---|---|
| committer | Patrick Spek <p.spek@tyil.nl> | 2024-11-28 09:01:49 +0100 |
| commit | 0686e5e4d1ab5b263c6b128e0db6a0006e6ab497 (patch) | |
| tree | 9e328db721c9212f3b65108d0076e90b3373a414 | |
| parent | 1b82df08f0e186fe5968543d69babbea6703646a (diff) | |
| download | fsdir-0686e5e4d1ab5b263c6b128e0db6a0006e6ab497.tar.gz fsdir-0686e5e4d1ab5b263c6b128e0db6a0006e6ab497.tar.bz2 | |
Use alpine:edgev1.1.0
| -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 |
