I am trying to build out a data science machine capable of running machine learning python programs in a production environment.
The current business case data needs to be pulled from SQL Server, scored with Machine Learning using python and pushed back to SQL Server.
I want to install the ODBC drivers for Linux.
The problem I have is which drivers to install?
When I connect to the container using the following command, it works fine and maps over my python programs in the poc directory.
"docker run -it --volume=c:\docker\poc:/poc kaggle/python /bin/bash"
When I try to figure out the version of Linux using the following command,
"uname -a"
I see it is Moby Linux from Docker?
Linux 69982a00af21 4.9.49-moby #1 SMP Wed Sep 27 00:36:29 UTC 2017 x86_64 GNU/Linux
However, what base image is that built from? (Ubuntu, Debian, Fedora, Red Hat, etc)
I need a cracker jack Unix Admin to help me out. How do I get ODBC drivers installed?
Any takers!
Thanks in advance for your help.
John