mirror of
https://github.com/nextepc/nextepc-oss.git
synced 2025-10-23 04:52:17 +00:00
"build" Docker image previously downloaded latest version of Open5GS from github, and built the project from that. Use local source files for building instead.
13 lines
252 B
Docker
13 lines
252 B
Docker
ARG dist=ubuntu
|
|
ARG tag=latest
|
|
ARG username=acetcom
|
|
FROM ${username}/${dist}-${tag}-open5gs-base
|
|
|
|
MAINTAINER Sukchan Lee <acetcom@gmail.com>
|
|
|
|
WORKDIR /open5gs
|
|
COPY docker/build/setup.sh /root
|
|
COPY ./ /open5gs
|
|
|
|
RUN meson build && ninja -C build install
|