]> git.gsnw.org Git - fping.git/commitdiff
Update CHANGELOG.md
authorhoodad <25026962+hoodadt@users.noreply.github.com>
Thu, 24 Jul 2025 10:40:20 +0000 (10:40 +0000)
committerErik Auerswald <auerswal@unix-ag.uni-kl.de>
Sat, 2 Aug 2025 12:00:26 +0000 (14:00 +0200)
CHANGELOG.md
contrib/Dockerfile

index 0e6338c56cb417416a90a11944d6671450bb9716..f93d3e262c922fa03378ba2683f4629a8a55cc7c 100644 (file)
@@ -24,6 +24,8 @@ Next
 - Report received ICMPv6 error messages (#391, thanks @auerswal)
 - Suppress duplicate reports in count mode with -q, --quiet or -Q, --squiet
   (#392, thanks @gsnw-sebast and @auerswal)
+- Switch to alpine-based multi-stage Docker build to reduce image size
+  Add OpenContainers-compatible labels (#399)
 
 fping 5.3 (2025-01-02)
 ======================
index ece7a64a7f80b5e77b7ab12a3219fafd82b129ad..4f8d0bbae4492ccb549e2ae47f1a0e4db68934b1 100644 (file)
@@ -12,9 +12,12 @@ RUN autoreconf --install && ./configure && make
 
 FROM alpine:3.22.1
 
+# OCI annotations
 LABEL org.opencontainers.image.title="fping" \
+      org.opencontainers.image.authors="fping Community" \
       org.opencontainers.image.description="High performance ping tool" \
-      org.opencontainers.image.source="https://github.com/schweikert/fping"
+      org.opencontainers.image.source="https://github.com/schweikert/fping" \
+      org.opencontainers.image.documentation="https://fping.org/fping.8.html" \
 
 COPY --from=builder /app/src/fping /usr/local/bin/fping