FROM kathara/frr RUN apt upgrade RUN apt update # install all packages for aioquic, python venv and monitoring RUN apt install python3-venv libssl-dev avahi-daemon iperf -y # Create a new python venv RUN python3 -m venv /venv # create shortcut for using venv python RUN echo "alias python=/venv/bin/python" >> ~/.bashrc # Install the pip packages RUN git clone https://github.com/Aperence/aioquic.git RUN /venv/bin/pip install aioquic/ RUN /venv/bin/pip install numpy pandas WORKDIR /home COPY certs . COPY data . COPY lab/scripts/init . COPY src . COPY ssh_keys/ssh_keys.pub .