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
{{ message }}
This repository was archived by the owner on Dec 4, 2024. It is now read-only.
docker run --rm -it mesosphere/spark:2.0.1-2.2.0-1-hadoop-2.7 /bin/bash
root@c91f29a62179:/opt/spark/dist# curl
curl: /opt/mesosphere/libmesos-bundle/lib/libcurl.so.4: version `CURL_OPENSSL_3' not found (required by curl)
This is because curl apparently follows LD_LIBRARY_PATH where there is a conflicting version of the curl library.
The fix I'm using is to run RUN LD_LIBRARY_PATH= curl ... when building an image on top of this one, but it feels a bit hacky.