Files
nextepc-oss/docker/build/Dockerfile
Bostjan Meglic d2cbcf7118 [build] Use local sources to build applications (#1583)
"build" Docker image previously downloaded latest version of Open5GS
from github, and built the project from that.
Use local source files for building instead.
2022-06-19 18:18:09 +09:00

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