From b3ce019d85a74be2aa1e1a2a0885f868d32a686f Mon Sep 17 00:00:00 2001 From: Umachandar Jayachandran Date: Mon, 10 Feb 2020 10:05:59 -0800 Subject: [PATCH] Changed apt repo from preview to 2019 --- linux/preview/examples/mssql-mlservices/Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/linux/preview/examples/mssql-mlservices/Dockerfile b/linux/preview/examples/mssql-mlservices/Dockerfile index 3ebec379..5d75cada 100644 --- a/linux/preview/examples/mssql-mlservices/Dockerfile +++ b/linux/preview/examples/mssql-mlservices/Dockerfile @@ -25,9 +25,8 @@ RUN apt-get install -y supervisor \ software-properties-common # register Microsoft package repository -#TODO: This needs to be updated when SQL Server 2019 is generally available RUN wget -qO- https://packages.microsoft.com/keys/microsoft.asc | sudo apt-key add - -RUN add-apt-repository "$(wget -qO- https://packages.microsoft.com/config/ubuntu/16.04/mssql-server-preview.list)" +RUN add-apt-repository "$(wget -qO- https://packages.microsoft.com/config/ubuntu/16.04/mssql-server-2019.list)" # install SQL Server ML services R and Python packages which will also install the mssql-server pacakge, the package for SQL Server itself # if you want to install only Python or only R, you can add/remove the package as needed below