Some applications might require the use of a database like Microsoft SQL Server. Here is an example of how to include this database in your base image.
FROM mcr.microsoft.com/mssql/server:2022-latest
# Install packages needed to for Microsoft ODBC. # This is needed for the runtime to be able to load shared libraries like # libodbcinst.so and libodbc.so RUN apt-get install -y unixodbc-dev # Accept EULA for Microsoft ODBC ENV ACCEPT_EULA=Y
run_container_AcuRCL.sh
--env "ACCEPT_EULA=Y" \ --env "MSSQL_SA_PASSWORD=Passw0rd" \
mssql_init report_status called from 7994 [1] HY000 -1 - [dynodbc] Unable to load ODBC driver manager ... Setting f_errno = 19
In this case, see Problem-solving on Linux to troubleshoot your setup.