docker: replace deprecated MAINTAINER with OCI image label

Use org.opencontainers.image.authors label instead of deprecated
MAINTAINER instruction in all Dockerfiles.
This commit is contained in:
Md. Amdadul Bari Imad 2026-02-07 12:16:06 +00:00 committed by Sukchan Lee
parent 21ada5e1a7
commit 7453b5be9a
10 changed files with 10 additions and 10 deletions

View file

@ -2,7 +2,7 @@ ARG dist=alpine
ARG tag=latest
FROM ${dist}:${tag}
MAINTAINER Sukchan Lee <acetcom@gmail.com>
LABEL org.opencontainers.image.authors="Sukchan Lee <acetcom@gmail.com>"
RUN apk update && \
apk add --no-cache \

View file

@ -3,7 +3,7 @@ ARG tag=latest
ARG username=acetcom
FROM ${username}/${dist}-${tag}-open5gs-base
MAINTAINER Sukchan Lee <acetcom@gmail.com>
LABEL org.opencontainers.image.authors="Sukchan Lee <acetcom@gmail.com>"
COPY setup.sh /root

View file

@ -3,7 +3,7 @@ ARG tag=latest
ARG username=acetcom
FROM ${username}/${dist}-${tag}-open5gs-base
MAINTAINER Sukchan Lee <acetcom@gmail.com>
LABEL org.opencontainers.image.authors="Sukchan Lee <acetcom@gmail.com>"
WORKDIR /open5gs
COPY docker/build/setup.sh /root

View file

@ -2,7 +2,7 @@ ARG dist=ubuntu
ARG tag=latest
FROM ${dist}:${tag}
MAINTAINER Sukchan Lee <acetcom@gmail.com>
LABEL org.opencontainers.image.authors="Sukchan Lee <acetcom@gmail.com>"
RUN apt-get update && \
apt-get upgrade -y && \

View file

@ -3,7 +3,7 @@ ARG tag=latest
ARG username=acetcom
FROM ${username}/${dist}-${tag}-open5gs-base
MAINTAINER Sukchan Lee <acetcom@gmail.com>
LABEL org.opencontainers.image.authors="Sukchan Lee <acetcom@gmail.com>"
RUN apt-get update && \
apt-get upgrade -y && \

View file

@ -2,7 +2,7 @@ ARG dist=fedora
ARG tag=latest
FROM ${dist}:${tag}
MAINTAINER Sukchan Lee <acetcom@gmail.com>
LABEL org.opencontainers.image.authors="Sukchan Lee <acetcom@gmail.com>"
RUN dnf -y install \
python3 \

View file

@ -3,7 +3,7 @@ ARG tag=latest
ARG username=acetcom
FROM ${username}/${dist}-${tag}-open5gs-base
MAINTAINER Sukchan Lee <acetcom@gmail.com>
LABEL org.opencontainers.image.authors="Sukchan Lee <acetcom@gmail.com>"
RUN dnf -y install \
findutils \

View file

@ -2,7 +2,7 @@ ARG dist=ubuntu
ARG tag=latest
FROM ${dist}:${tag}
MAINTAINER Sukchan Lee <acetcom@gmail.com>
LABEL org.opencontainers.image.authors="Sukchan Lee <acetcom@gmail.com>"
RUN apt-get update && \
apt-get upgrade -y && \

View file

@ -3,7 +3,7 @@ ARG tag=latest
ARG username=acetcom
FROM ${username}/${dist}-${tag}-open5gs-base
MAINTAINER Sukchan Lee <acetcom@gmail.com>
LABEL org.opencontainers.image.authors="Sukchan Lee <acetcom@gmail.com>"
RUN apt-get update && \
apt-get upgrade -y && \

View file

@ -1,6 +1,6 @@
FROM node:19
MAINTAINER Sukchan Lee <acetcom@gmail.com>
LABEL org.opencontainers.image.authors="Sukchan Lee <acetcom@gmail.com>"
COPY webui /usr/src/open5gs/webui