From d57392ac8c5a42b51f1455c05bbd930aaa87aad5 Mon Sep 17 00:00:00 2001 From: amai2012 Date: Thu, 26 Feb 2026 14:46:46 +0100 Subject: [PATCH] Fix formatting of org.opencontainers.image.source label https://docs.docker.com/reference/dockerfile/#label indicates LABELs should have key=value form --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 3810b51..f50981c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ ARG BASEIMAGE=alpine:3 FROM $BASEIMAGE as base LABEL maintainer="Denys Zhdanov " -LABEL org.opencontainers.image.source https://github.com/graphite-project/docker-graphite-statsd +LABEL org.opencontainers.image.source=https://github.com/graphite-project/docker-graphite-statsd RUN true \ && apk add --update --no-cache \