From 234ff1d1d3c888a071c9198d311cedfcc179f235 Mon Sep 17 00:00:00 2001 From: Pim van Pelt Date: Sat, 3 May 2025 13:30:04 +0200 Subject: [PATCH] Move files to their own directory --- Dockerfile.bookworm | 8 ++------ bootstrap.vpp => files/bootstrap.vpp | 0 clab.vpp => files/clab.vpp | 0 manual-post.vpp => files/manual-post.vpp | 0 manual-pre.vpp => files/manual-pre.vpp | 0 startup.conf => files/startup.conf | 0 6 files changed, 2 insertions(+), 6 deletions(-) rename bootstrap.vpp => files/bootstrap.vpp (100%) rename clab.vpp => files/clab.vpp (100%) rename manual-post.vpp => files/manual-post.vpp (100%) rename manual-pre.vpp => files/manual-pre.vpp (100%) rename startup.conf => files/startup.conf (100%) 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