diff --git a/Dockerfile.bookworm b/Dockerfile.bookworm index c61a87c..9d1ffda 100644 --- a/Dockerfile.bookworm +++ b/Dockerfile.bookworm @@ -11,10 +11,6 @@ RUN curl -s https://packagecloud.io/install/repositories/fdio/${REPO}/script.deb RUN apt-get update RUN apt-get -y install vpp vpp-plugin-core RUN apt-get -y clean -COPY startup.conf /etc/vpp/startup.conf -COPY bootstrap.vpp /etc/vpp/bootstrap.vpp -COPY manual-pre.vpp /etc/vpp/manual-pre.vpp -COPY clab.vpp /etc/vpp/clab.vpp -COPY manual-post.vpp /etc/vpp/manual-post.vpp +COPY files/startup.conf /etc/vpp/startup.conf +COPY files/*.vpp /etc/vpp/ CMD ["/usr/bin/vpp","-c","/etc/vpp/startup.conf"] - diff --git a/bootstrap.vpp b/files/bootstrap.vpp similarity index 100% rename from bootstrap.vpp rename to files/bootstrap.vpp diff --git a/clab.vpp b/files/clab.vpp similarity index 100% rename from clab.vpp rename to files/clab.vpp diff --git a/manual-post.vpp b/files/manual-post.vpp similarity index 100% rename from manual-post.vpp rename to files/manual-post.vpp diff --git a/manual-pre.vpp b/files/manual-pre.vpp similarity index 100% rename from manual-pre.vpp rename to files/manual-pre.vpp diff --git a/startup.conf b/files/startup.conf similarity index 100% rename from startup.conf rename to files/startup.conf