mirror of
https://github.com/open5gs/open5gs.git
synced 2026-05-05 23:37:22 +00:00
Initial Proposal for Docker (#16)
This commit is contained in:
parent
38cccb8a85
commit
9a86d4cb7c
12 changed files with 235 additions and 47 deletions
33
support/docker/ubuntu/base/Dockerfile
Normal file
33
support/docker/ubuntu/base/Dockerfile
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
ARG tag=latest
|
||||
FROM ubuntu:${tag}
|
||||
|
||||
MAINTAINER Sukchan Lee <acetcom@gmail.com>
|
||||
|
||||
RUN apt-get update && \
|
||||
apt-get upgrade -y && \
|
||||
apt-get install -y --no-install-recommends \
|
||||
autoconf \
|
||||
libtool \
|
||||
gcc \
|
||||
flex \
|
||||
bison \
|
||||
git \
|
||||
debhelper \
|
||||
devscripts \
|
||||
dh-autoreconf \
|
||||
dh-systemd \
|
||||
libsctp-dev \
|
||||
libgnutls28-dev \
|
||||
libgcrypt-dev \
|
||||
libssl-dev \
|
||||
libmongoc-dev \
|
||||
libbson-dev \
|
||||
libyaml-dev \
|
||||
build-essential \
|
||||
ca-certificates \
|
||||
netbase \
|
||||
ifupdown \
|
||||
pkg-config && \
|
||||
apt-get clean
|
||||
|
||||
COPY nextepc /etc/network/interfaces.d/
|
||||
Loading…
Add table
Add a link
Reference in a new issue