mirror of
https://github.com/open5gs/open5gs.git
synced 2026-05-05 15:24:14 +00:00
9 lines
285 B
Docker
9 lines
285 B
Docker
FROM ubuntu:16.04
|
|
|
|
RUN \
|
|
apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv F26B05AF && \
|
|
echo "deb http://ppa.launchpad.net/acetcom/nextepc/ubuntu xenial main" > /etc/apt/sources.list.d/nextepc.list && \
|
|
apt-get update && \
|
|
apt-get install -y nextepc
|
|
|
|
WORKDIR /root
|