blob: 616b72d355509047ed7ad955a53411248888bfaf [file] [log] [blame]
Gabriel Oginski95875772022-07-08 07:46:32 +00001FROM jrei/systemd-ubuntu:20.04
2
3# add proxy according your own network
4#ENV http_proxy=""
5#ENV https_proxy=""
6#ENV no_proxy=""
7
8# update
9RUN apt-get update
10
11# tools
12RUN apt-get install -y git make wget libsystemd-dev
13RUN apt-get install -y sudo gperf bison flex
14RUN apt-get install -y iproute2 iputils-ping
15
16# setup env
17WORKDIR /root
18COPY ./docker/scripts/init_docker1.sh /root/
19COPY ./docker/scripts/init_docker2.sh /root/
20COPY ./docker/scripts/init.sh /root/
21COPY ./docker/scripts/run_vpp.sh /root/
22RUN chmod +x /root/init_docker1.sh
23RUN chmod +x /root/init_docker2.sh
24RUN chmod +x /root/init.sh
25RUN chmod +x /root/run_vpp.sh
Gabriel Oginski95875772022-07-08 07:46:32 +000026
27RUN ./init.sh