Skip to content

Commit

Permalink
fix: filter out runtime dependency on libc.so
Browse files Browse the repository at this point in the history
This library doesn't actually exist.
  • Loading branch information
niheconomoum committed Dec 19, 2023
1 parent 7b714fa commit 74a8473
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions 8.4/alpine3.19/Dockerfile

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Dockerfile-linux.template
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,7 @@ RUN set -eux; \
| sort -u \
| awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' \
| fgrep -v libgcc_s- \
| fgrep -v libc.so \
| xargs -rt apk add --no-network --virtual .satosa-rundeps \
; \
apk del --no-network .build-deps; \
Expand Down

0 comments on commit 74a8473

Please sign in to comment.