open5gs/docker/ubuntu/latest/base/Dockerfile

39 lines
852 B
Docker
Raw Normal View History

2018-02-21 14:20:48 +00:00
ARG dist=ubuntu
2018-02-20 10:36:34 +00:00
ARG tag=latest
2018-02-21 14:20:48 +00:00
FROM ${dist}:${tag}
2018-02-20 10:36:34 +00:00
MAINTAINER Sukchan Lee <acetcom@gmail.com>
2018-02-21 14:55:44 +00:00
RUN apt-get update && \
2018-02-20 10:36:34 +00:00
apt-get upgrade -y && \
2020-04-26 19:04:07 +00:00
DEBIAN_FRONTEND=noninteractive \
2018-02-20 10:36:34 +00:00
apt-get install -y --no-install-recommends \
2019-09-15 12:26:27 +00:00
python3-pip \
python3-setuptools \
python3-wheel \
2019-09-15 12:26:27 +00:00
ninja-build \
build-essential \
2018-02-20 10:36:34 +00:00
flex \
bison \
git \
2022-11-21 13:06:29 +00:00
cmake \
2020-04-26 19:04:07 +00:00
meson \
2018-02-20 10:36:34 +00:00
libsctp-dev \
libgnutls28-dev \
libgcrypt-dev \
libssl-dev \
2018-05-02 13:11:02 +00:00
libidn11-dev \
2018-02-20 10:36:34 +00:00
libmongoc-dev \
libbson-dev \
libyaml-dev \
2020-05-18 21:00:37 +00:00
libmicrohttpd-dev \
libcurl4-gnutls-dev \
libnghttp2-dev \
libtins-dev \
libtalloc-dev \
iproute2 \
2018-02-20 10:36:34 +00:00
ca-certificates \
netbase \
pkg-config && \
apt-get clean