diff options
author | Birte Kristina Friesel <derf@finalrewind.org> | 2024-08-11 19:13:36 +0200 |
---|---|---|
committer | Birte Kristina Friesel <derf@finalrewind.org> | 2024-08-11 19:13:36 +0200 |
commit | 79832d76067e35736da9d9d912a583a29c2e446d (patch) | |
tree | 7faef9552cf6bd900846bc6af57baced253f09c5 | |
parent | 64bcf7db6258ff116a160f24a63d5a3fdd62ffa3 (diff) |
Add ext/ to Dockerfile and .deb build helper
-rw-r--r-- | Dockerfile | 1 | ||||
-rwxr-xr-x | scripts/makedeb-docker-helper | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -1,6 +1,7 @@ FROM perl:5.30-slim COPY bin/ /app/bin/ +COPY ext/ /app/ext/ COPY lib/ /app/lib/ COPY Build.PL cpanfile* /app/ diff --git a/scripts/makedeb-docker-helper b/scripts/makedeb-docker-helper index e15f31d..0f6a945 100755 --- a/scripts/makedeb-docker-helper +++ b/scripts/makedeb-docker-helper @@ -20,7 +20,7 @@ apt-cache dumpavail | dpkg --merge-avail mkdir -p /src/app cp -a /orig/Build.PL /orig/Changelog /orig/README.md /src/app -cp -a /orig/bin /orig/lib /src/app +cp -a /orig/bin /orig/ext /orig/lib /src/app cd /src/app sed -i 's/sign *=> *1/sign => 0/' Build.PL |