mirror of
https://github.com/Telecominfraproject/oopt-tai.git
synced 2026-01-27 02:21:53 +00:00
created a top-level Dockerfile which can be used to build everything in this repo. Signed-off-by: Wataru Ishida <ishida@nel-america.com>
10 lines
404 B
Docker
10 lines
404 B
Docker
FROM ubuntu:19.04
|
|
|
|
ARG http_proxy
|
|
ARG https_proxy
|
|
|
|
RUN apt update && apt install -qy libgrpc++-dev g++ protobuf-compiler-grpc make pkg-config python3 curl python3-distutils libclang1-6.0 doxygen
|
|
RUN update-alternatives --install /usr/bin/python python /usr/bin/python3 10
|
|
RUN curl -kL https://bootstrap.pypa.io/get-pip.py | python
|
|
RUN pip install grpcio grpcio-tools prompt_toolkit clang jinja2 tabulate
|