Closed SaturnusDJ closed 5 years ago
Would https://wiki.alpinelinux.org/wiki/Running_glibc_programs be a solution? I tried it but cannot get it to work yet. If this is the wrong place to ask, apologies, please point me where to go.
Got it working like this:
wget --no-check-certificate https://github.com/sgerrand/alpine-pkg-glibc/releases/download/2.29-r0/glibc-2.29-r0.apk && \
wget --no-check-certificate https://github.com/sgerrand/alpine-pkg-glibc/releases/download/2.29-r0/glibc-bin-2.29-r0.apk && \
apk add --no-cache --allow-untrusted glibc-2.29-r0.apk && \
apk add --no-cache --allow-untrusted glibc-bin-2.29-r0.apk && \
Internet searched quite a bit, tried a lot of things including previous issues in this repo, some progress, but no working program yet.
Trying to build a minimal image. Works with debian:stretch, but size is x10 versus alpine. (All via Dockerfile build)
Initially:
Command not found
After getting libgcc libstdc++ (apk add libgcc libstdc++ )
After:
Result:
Also tried: libbsd libbsd-dev zlib1g.
Just not gonna work due to the pre-compiling (source not available) or still something left to try?