Compare commits
3 commits
Author | SHA1 | Date | |
---|---|---|---|
d9939c8701 | |||
37f297b4dc | |||
15310ee2ff |
2 changed files with 3 additions and 3 deletions
|
@ -6,7 +6,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||
|
||||
## [Unreleased]
|
||||
|
||||
### Changed
|
||||
- changed docker base image to gcr.io/distroless/static-debian12
|
||||
|
||||
## [0.2.0] - 2024-04-19
|
||||
### ⚠️ Breaking Changes
|
||||
|
|
|
@ -20,10 +20,9 @@ RUN go build -o ntppool-exporter main.go
|
|||
RUN chmod +x ntppool-exporter
|
||||
|
||||
|
||||
FROM debian:12 AS prod
|
||||
FROM gcr.io/distroless/static-debian12 AS prod
|
||||
|
||||
WORKDIR /app
|
||||
COPY --from=build /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/
|
||||
COPY --from=build /var/app/ntppool-exporter /bin/
|
||||
|
||||
LABEL maintainer="Adora Laura Kalb <adora@lila.network>"
|
||||
|
|
Loading…
Reference in a new issue