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 has been 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.
The text was updated successfully, but these errors were encountered:
@dirkjonker The other option is: LD_PRELOAD=libcurl.so.3 curl --help
Another option is to build curl and use that instead of installing it from the ubuntu repo (during image built): https://gist.github.com/fideloper/f72997d2e2c9fbe66459
This worked fine for me. Also an upgrade: FROM ubuntu:16.04 did work for me, any reason we want to stick to 14.04? @ArtRand@susanxhuynh thoughts?
With the latest release curl doesn't work.
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.The text was updated successfully, but these errors were encountered: