diff options
| author | Birte Kristina Friesel <derf@finalrewind.org> | 2025-11-16 07:22:20 +0100 |
|---|---|---|
| committer | Birte Kristina Friesel <derf@finalrewind.org> | 2025-11-16 07:22:20 +0100 |
| commit | a70d32f3481fc36bda2faa659b0084c191d4bb12 (patch) | |
| tree | f2d24456e182e8bc30b347fd1c7bc98d69992734 | |
| parent | 26a535f0412353a5ac8f51e191e6a75f3b800000 (diff) | |
Include share/ in Docker builds
| -rw-r--r-- | Dockerfile | 1 | ||||
| -rwxr-xr-x | scripts/makedeb-docker-helper | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -2,6 +2,7 @@ FROM perl:5.40-slim COPY bin/ /app/bin/ COPY lib/ /app/lib/ +COPY share/ /app/share/ COPY Build.PL cpanfile* /app/ WORKDIR /app diff --git a/scripts/makedeb-docker-helper b/scripts/makedeb-docker-helper index 7efdaa1..c83828f 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/lib /orig/share /src/app cd /src/app sed -i 's/sign *=> *1/sign => 0/' Build.PL |
