I have tried just about anything in terms of installing the ODBC drivers for connecting to an Azure SQL server. Right now i am installing R using a docker image, however i can't get the drivers to get installed. Been using the following:
FROM rocker/tidyverse
MAINTAINER @me
RUN apt-get update && apt-get install -y \
unixodbc \
unixodbc-dev \
tdsodbc \
odbc-postgresql \
libsqliteodbc \
## clean up
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/ \
&& rm -rf /tmp/downloaded_packages/ /tmp/*.rds```
Any ideas to how I can install them?