Hi, I was running into issues with conda update corrupting the libssl installation. There was an error about missing hexdump, so I installed bsdmainutils:
RUN apt-get update && apt-get upgrade -y && apt-get install -y wget libsm6 libxrender1 libfontconfig1 bsdmainutils
... which seems to have fixed the problem.
I'd send a patch, but it's a bit tricky from my work.
Hi, I was running into issues with conda update corrupting the libssl installation. There was an error about missing hexdump, so I installed bsdmainutils: RUN apt-get update && apt-get upgrade -y && apt-get install -y wget libsm6 libxrender1 libfontconfig1 bsdmainutils ... which seems to have fixed the problem. I'd send a patch, but it's a bit tricky from my work.