Skip to content

Commit 74a8473

Browse files
committed
fix: filter out runtime dependency on libc.so
This library doesn't actually exist.
1 parent 7b714fa commit 74a8473

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

8.4/alpine3.19/Dockerfile

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Dockerfile-linux.template

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,7 @@ RUN set -eux; \
101101
| sort -u \
102102
| awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' \
103103
| fgrep -v libgcc_s- \
104+
| fgrep -v libc.so \
104105
| xargs -rt apk add --no-network --virtual .satosa-rundeps \
105106
; \
106107
apk del --no-network .build-deps; \

0 commit comments

Comments
 (0)