Skip to content

Commit

Permalink
docker: fix cloned branch
Browse files Browse the repository at this point in the history
  • Loading branch information
dpugliese6 committed Jan 5, 2025
1 parent d412d37 commit 5a561cb
Showing 1 changed file with 20 additions and 20 deletions.
40 changes: 20 additions & 20 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,34 +8,34 @@ ENV DEBIAN_FRONTEND=noninteractive
####
RUN apt-get update \
&& apt-get install --no-install-recommends --quiet --assume-yes \
clang-format \
cmake \
g++ \
gdb \
gcc \
git \
make \
libgsl-dev \
libxml2-dev \
patch \
pkg-config \
python3 \
python3-venv \
python3-pip \
python-is-python3 \
rapidjson-dev \
doxygen \
graphviz
clang-format \
cmake \
g++ \
gdb \
gcc \
git \
make \
libgsl-dev \
libxml2-dev \
patch \
pkg-config \
python3 \
python3-venv \
python3-pip \
python-is-python3 \
rapidjson-dev \
doxygen \
graphviz

# Use local versione of the simulator

#RUN mkdir IoD_Sim
#COPY . ./IoD_Sim/

# Use remote version of the simulator
RUN git clone https://github.com/telematics-lab/IoD_Sim.git
RUN git clone -b v4.0.2 https://github.com/telematics-lab/IoD_Sim.git

WORKDIR ./IoD_Sim
WORKDIR /IoD_Sim
RUN ./tools/prepare-ns3-docker.sh
RUN ./tools/configure-iodsim.sh
WORKDIR ./ns3
Expand Down

0 comments on commit 5a561cb

Please sign in to comment.