Yulong Pei de0c1af447 vpp-swan: remove step to copy vpp_sswan source for docker image
Since vpp_sswan plugin already merged in /vpp/extras/strongswan,
no need to provide additional vpp_sswan source files for docker image.

Type: fix

Signed-off-by: Yulong Pei <yulong.pei@intel.com>
Change-Id: I35bad22b1046e0dddbcf39e1af38d589d1438239
Signed-off-by: Yulong Pei <yulong.pei@intel.com>
2022-11-01 20:20:50 +00:00

28 lines
678 B
Docker

FROM jrei/systemd-ubuntu:20.04
# add proxy according your own network
#ENV http_proxy=""
#ENV https_proxy=""
#ENV no_proxy=""
# update
RUN apt-get update
# tools
RUN apt-get install -y git make wget libsystemd-dev
RUN apt-get install -y sudo gperf bison flex
RUN apt-get install -y iproute2 iputils-ping
# setup env
WORKDIR /root
COPY ./docker/scripts/init_docker1.sh /root/
COPY ./docker/scripts/init_docker2.sh /root/
COPY ./docker/scripts/init.sh /root/
COPY ./docker/scripts/run_vpp.sh /root/
RUN chmod +x /root/init_docker1.sh
RUN chmod +x /root/init_docker2.sh
RUN chmod +x /root/init.sh
RUN chmod +x /root/run_vpp.sh
RUN ./init.sh