opennetworkinglab / ODTN-emulator

Emulator for the ODTN project.
Apache License 2.0
8 stars 18 forks source link

Docker build failure during cloning Netopeer2 #16

Open ewtang opened 3 years ago

ewtang commented 3 years ago

Cloning into 'Netopeer2'... /bin/sh: 1: cd: can't cd to Netopeer2/server

iicc1 commented 3 years ago

Edit the Dockerfile and change:

&& cd ~ && git clone https://github.com/CESNET/Netopeer2.git \
&& cd Netopeer2/server && git checkout v0.7-r1 \
&& mkdir build && cd build && cmake .. \
&& make -j4 && make install \

to

&& cd ~ && git clone https://github.com/CESNET/Netopeer2.git \
&& cd Netopeer2 && git checkout v0.7-r1 && cd server \
&& mkdir build && cd build && cmake .. \
&& make -j4 && make install \
Andrea-Campanella commented 3 years ago

can you please submit a patch for this ?

Thanks,