Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Pin versions of Microsoft ODBC packages used for Python #2324

Merged
merged 6 commits into from
Jan 8, 2024
4 changes: 2 additions & 2 deletions images/runtime/python/install-dependencies.sh
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ apt-get update \
apt-transport-https \
&& echo "en_US.UTF-8 UTF-8" > /etc/locale.gen \
&& locale-gen \
&& ACCEPT_EULA=Y apt-get install -y msodbcsql17 \
&& ACCEPT_EULA=Y apt-get install -y msodbcsql18 \
&& DEBIAN_FRONTEND=noninteractive ACCEPT_EULA=Y apt-get install -y msodbcsql17=17.10.4.1-1 \
&& DEBIAN_FRONTEND=noninteractive ACCEPT_EULA=Y apt-get install -y msodbcsql18=18.2.2.1-1 \
&& ACCEPT_EULA=Y apt-get install -y mssql-tools18 \
&& echo 'export PATH="$PATH:/opt/mssql-tools18/bin"' >> ~/.bashrc \
&& source ~/.bashrc \
Expand Down