open5gs/docker/package/Dockerfile

11 lines
232 B
Docker
Raw Normal View History

2018-02-20 10:36:34 +00:00
ARG tag=latest
FROM ubuntu:${tag}
RUN apt-get update && \
apt-get -y install software-properties-common && \
add-apt-repository ppa:acetcom/open5gs && \
2018-02-20 10:36:34 +00:00
apt-get update && \
apt-get install -y open5gs
2018-02-20 10:36:34 +00:00
WORKDIR /root