Dear Ramon,
I'm trying to create a Docker Image based on Ubuntu Linux and install Mininet WiFi. My goal is to run mininet-wifi codes with Windows 10 and not use the Ubuntu virtual machine anymore. Because of my hardware performance, writing and running code within virtual machines is hard. It is always hung and freezing like hell!
Here is my Dockerfile:
# mininet-wifi-Docker-image
FROM ubuntu: 18.04
# install update
RUN apt-get update
RUN apt install sudo tasksel -y
USER root
RUN sudo apt-get install -y python
# install mininet-wifi
RUN apt-get install -y git
RUN git clone
https://github.com/intrig-unicamp/mininet-wifiRUN cd mininet-wifi
RUN sudo util/install.sh -Wlnfv
Everything went fine, except for the openvswitch-controller. There is a warning saying that "unable to locate the openvswitch-controller". but instead of the openvswitch-controller, it installs the openvswitch-testcontroller as below:
sudo apt-get install openvswitch-testcontroller
sudo cp /usr/bin/ovs-testcontroller /usr/bin/ovs-controller
However, after running examples such as "python telemetry.py" I faced a freezing screen and nothing happened.

I also have a second question. Is it possible to install and run sumo in the Ubuntu Docker image?
Thank you so much.
Best Regards,
Mohammad Rosatami