Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ RUN \

RUN \
echo "**** determine runtime packages ****" && \
scanelf --needed --nobanner /tmp/znc/usr/local/bin/znc \
scanelf --needed --nobanner /tmp/znc/usr/local/bin/znc /tmp/znc/usr/local/lib/znc/ \
| awk '{ gsub(/,/, "\nso:", $2); print "so:" $2 }' \
| sort -u \
| xargs -r apk info --installed \
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.aarch64
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ RUN \

RUN \
echo "**** determine runtime packages ****" && \
scanelf --needed --nobanner /tmp/znc/usr/local/bin/znc \
scanelf --needed --nobanner /tmp/znc/usr/local/bin/znc /tmp/znc/usr/local/lib/znc/ \
| awk '{ gsub(/,/, "\nso:", $2); print "so:" $2 }' \
| sort -u \
| xargs -r apk info --installed \
Expand Down
1 change: 1 addition & 0 deletions readme-vars.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ init_diagram: |
"znc:latest" <- Base Images
# changelog
changelogs:
- {date: "06.12.25:", desc: "Add missing dependencies for scripting modules." }
- {date: "10.06.24:", desc: "Migrate default config file to newer format."}
- {date: "06.06.24:", desc: "Rebase to Alpine 3.20."}
- {date: "26.03.24:", desc: "Switch back to multi-threaded builds and ignore `-beta` and `-alpha` tags as well as `-rc`."}
Expand Down