open5gs/docker/build/Dockerfile
Md. Amdadul Bari Imad 7453b5be9a docker: replace deprecated MAINTAINER with OCI image label
Use org.opencontainers.image.authors label instead of deprecated
MAINTAINER instruction in all Dockerfiles.
2026-02-08 11:55:34 +09:00

15 lines
389 B
Docker

ARG dist=ubuntu
ARG tag=latest
ARG username=acetcom
FROM ${username}/${dist}-${tag}-open5gs-base
LABEL org.opencontainers.image.authors="Sukchan Lee <acetcom@gmail.com>"
WORKDIR /open5gs
COPY docker/build/setup.sh /root
COPY ./ /open5gs
ADD https://github.com/ufoscout/docker-compose-wait/releases/download/2.9.0/wait /wait
RUN chmod +x /wait
RUN meson build && ninja -C build install