I'm building a perl application inside of a docker container based on perl:5.22 which is based on debian:stretch
I have used cpan to install a bunch of perl related packages.
I get the following error when running an odbc_test.pl script
.
I haven't ran into that error before, the issue seems related to libssl1.0.0 libssl-dev
which I found googling around but I'm not sure whether that's what's causing my issues.
I get this error below:
perl: symbol lookup error: /opt/microsoft/msodbcsql/lib64/libmsodbcsql-11.0.so.2270.0: undefined symbol: SSLeay
P.S I'm completly new to Perl, my job is to only package this app inside of a docker container so the inner workings of perl are somewhat obscure/blackbox to me.
Has anyone ran into that error before?