docker-elixir
docker-elixir copied to clipboard
I used official elixir:1.18.1 docker image and started getting TLS handshake issue and GLIBC_2.34 not found errors
When I upgraded Elixir image from 1.15.6 to elixir:1.18.1
, I first got stopped at mix local.hex --force
which I found out is failing because of missing certificates. To resolve this, I run this command in image: apt-get update && apt-get install -y ca-certificates
and now I am starting to get GLIBC_2.34' not found error
. any help or guidance or workaround to resolve this would be great