You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
docker run -it --rm --name alpine3 alpine:3.7 ash
### copy scope to container
### docker cp ./bin/linux/x86_64/scope alpine3:scope
./scope run ls
### You should be able to run scope successfully
### Without Error `relocating libscope.so: secure_getenv: symbol not found`
Steps To Reproduce
In case:
scope run ls
in Alpine < 3.11 we fail with following error:The reason for that is lack of support
secure_getenv
in musl library before1.1.24
The potential solution is to replace usage of
secure_getenv
in withgetenv
in AppScope codeThe text was updated successfully, but these errors were encountered: