mirror of
https://github.com/open5gs/open5gs.git
synced 2026-05-05 15:24:14 +00:00
18 lines
417 B
Docker
18 lines
417 B
Docker
#
|
|
# NextEPC Dockerfile
|
|
#
|
|
# https://github.com/acetcom/nextepc
|
|
#
|
|
|
|
# Pull base image.
|
|
FROM ubuntu:latest
|
|
|
|
# Install NextEPC.
|
|
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
|
|
|
|
# Define working directory.
|
|
WORKDIR /root
|