From: Tom Rini Date: Mon, 19 Aug 2024 21:07:19 +0000 (-0600) Subject: Dockerfile: Update to namespace for some labels X-Git-Url: http://git.dujemihanovic.xyz/html/index.html?a=commitdiff_plain;h=bcdd782dc2017df0a95a6acaf09e79968fd7bb1e;p=u-boot.git Dockerfile: Update to namespace for some labels Using "MAINTAINER" and "Description" have been replaced with org.opencontainers.image namespace variables. Reviewed-by: Simon Glass Signed-off-by: Tom Rini --- diff --git a/tools/docker/Dockerfile b/tools/docker/Dockerfile index cda8735456..f0e36994cc 100644 --- a/tools/docker/Dockerfile +++ b/tools/docker/Dockerfile @@ -3,8 +3,8 @@ # to build U-Boot and run our test suites. FROM ubuntu:jammy-20240227 -MAINTAINER Tom Rini -LABEL Description=" This image is for building U-Boot inside a container" +LABEL org.opencontainers.image.authors="Tom Rini " +LABEL org.opencontainers.image.description=" This image is for building U-Boot inside a container" # Make sure apt is happy ENV DEBIAN_FRONTEND=noninteractive