open5gs/docker/package/Dockerfile
Sukchan Lee 142763c280 Rename Project to Open5GS
- Change BuildTool to Meson
 - Many BUGS Fixed
2019-10-27 17:41:14 +09:00

10 lines
232 B
Docker

ARG tag=latest
FROM ubuntu:${tag}
RUN apt-get update && \
apt-get -y install software-properties-common && \
add-apt-repository ppa:acetcom/open5gs && \
apt-get update && \
apt-get install -y open5gs
WORKDIR /root