mirror of
https://github.com/open5gs/open5gs.git
synced 2025-11-02 21:13:40 +00:00
11 lines
232 B
Docker
11 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/nextepc && \
|
|
apt-get update && \
|
|
apt-get install -y nextepc
|
|
|
|
WORKDIR /root
|