diff options
author | Tom Rini <trini@konsulko.com> | 2024-08-19 15:07:19 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2024-08-21 08:25:23 -0600 |
commit | bcdd782dc2017df0a95a6acaf09e79968fd7bb1e (patch) | |
tree | f4dbb97659ebada850b928567507fefa4bd96d7b | |
parent | 9a6a92d7387c9c2382cd8170c4eddb6a2ca04f90 (diff) |
Dockerfile: Update to namespace for some labels
Using "MAINTAINER" and "Description" have been replaced with
org.opencontainers.image namespace variables.
Reviewed-by: Simon Glass <sjg@chromium.org>
Signed-off-by: Tom Rini <trini@konsulko.com>
-rw-r--r-- | tools/docker/Dockerfile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/docker/Dockerfile b/tools/docker/Dockerfile index cda87354566..f0e36994cc2 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 <trini@konsulko.com> -LABEL Description=" This image is for building U-Boot inside a container" +LABEL org.opencontainers.image.authors="Tom Rini <trini@konsulko.com>" +LABEL org.opencontainers.image.description=" This image is for building U-Boot inside a container" # Make sure apt is happy ENV DEBIAN_FRONTEND=noninteractive |