2022-11-01 18:13:33 +01:00
|
|
|
#==================================================================================
|
|
|
|
# Copyright (c) 2022 Northeastern University
|
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
#==================================================================================
|
|
|
|
|
|
|
|
FROM wineslab/o-ran-sc-bldr-ubuntu18-c-go:9-u18.04 as buildenv
|
|
|
|
ARG log_level_e2sim=2
|
|
|
|
# log_level_e2sim = 0 -> LOG_LEVEL_UNCOND 0
|
|
|
|
# log_level_e2sim = 1 -> LOG_LEVEL_ERROR 1
|
|
|
|
# log_level_e2sim = 2 -> LOG_LEVEL_INFO 2
|
|
|
|
# log_level_e2sim = 3 -> LOG_LEVEL_DEBUG 3
|
|
|
|
|
|
|
|
# Install E2sim
|
2022-11-02 01:13:25 +01:00
|
|
|
RUN mkdir -p /workspace
|
2022-11-01 18:13:33 +01:00
|
|
|
RUN apt-get update && apt-get install -y build-essential git cmake libsctp-dev autoconf automake libtool bison flex libboost-all-dev
|
|
|
|
|
2022-11-02 01:13:25 +01:00
|
|
|
WORKDIR /workspace
|
2022-11-01 18:13:33 +01:00
|
|
|
|
2022-11-02 01:13:25 +01:00
|
|
|
RUN git clone -b develop https://github.com/wineslab/ns-o-ran-e2-sim /workspace/e2sim
|
2022-11-01 18:13:33 +01:00
|
|
|
|
2022-11-02 01:13:25 +01:00
|
|
|
RUN mkdir /workspace/e2sim/e2sim/build
|
|
|
|
WORKDIR /workspace/e2sim/e2sim/build
|
2022-11-01 18:13:33 +01:00
|
|
|
RUN cmake .. -DDEV_PKG=1 -DLOG_LEVEL=${log_level_e2sim}
|
2022-11-02 01:13:25 +01:00
|
|
|
|
2022-11-01 18:13:33 +01:00
|
|
|
RUN make package
|
|
|
|
RUN echo "Going to install e2sim-dev"
|
|
|
|
RUN dpkg --install ./e2sim-dev_1.0.0_amd64.deb
|
|
|
|
RUN ldconfig
|
|
|
|
|
|
|
|
WORKDIR /workspace
|
|
|
|
|
|
|
|
# Install ns-3
|
|
|
|
RUN apt-get install -y g++ python3 qtbase5-dev qtchooser qt5-qmake qtbase5-dev-tools
|
|
|
|
|
2022-11-02 01:13:25 +01:00
|
|
|
RUN git clone -b release https://github.com/wineslab/ns-o-ran-ns3-mmwave /workspace/ns3-mmwave-oran
|
|
|
|
RUN git clone -b master https://github.com/o-ran-sc/sim-ns3-o-ran-e2 /workspace/ns3-mmwave-oran/contrib/oran-interface
|
2022-11-01 18:13:33 +01:00
|
|
|
|
|
|
|
WORKDIR /workspace/ns3-mmwave-oran
|
|
|
|
|
|
|
|
RUN ./waf configure --enable-tests --enable-examples
|
2022-11-02 01:13:25 +01:00
|
|
|
RUN ./waf build
|
2022-11-01 18:13:33 +01:00
|
|
|
|
|
|
|
WORKDIR /workspace
|
|
|
|
|
|
|
|
CMD [ "/bin/sh" ]
|
|
|
|
|
|
|
|
|