For container setup we used /opt/mssql-tools/bin/sqlcmd to create needed Server Objects, like Linked server as part of pre-deployment.
After changing version to FROM mcr.microsoft.com/mssql/server:2019-latest this binary executable is not accessible in that location and all pre-deployment and those scripts were left not executed which led to failing deployments.
Checked the latest version and binary executable is under ```/opt/mssql-tools18/bin/sqlcmd``
Once reverted to FROM mcr.microsoft.com/mssql/server:2019-CU27-ubuntu-20.04 same setup worked without issues and binary executable was in expected folder.
For container setup we used
/opt/mssql-tools/bin/sqlcmdto create needed Server Objects, like Linked server as part of pre-deployment.After changing version to
FROM mcr.microsoft.com/mssql/server:2019-latestthis binary executable is not accessible in that location and all pre-deployment and those scripts were left not executed which led to failing deployments.Checked the latest version and binary executable is under ```/opt/mssql-tools18/bin/sqlcmd``
Once reverted to
FROM mcr.microsoft.com/mssql/server:2019-CU27-ubuntu-20.04same setup worked without issues and binary executable was in expected folder.