We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8e5a983 commit c467a6bCopy full SHA for c467a6b
Dockerfile
@@ -20,8 +20,8 @@ RUN apt-get update && \
20
unixodbc-dev
21
22
# Install the Microsoft ODBC driver for SQL Server
23
-RUN curl https://packages.microsoft.com/keys/microsoft.asc | apt-key add -
24
-RUN curl https://packages.microsoft.com/config/ubuntu/$(lsb_release -rs)/prod.list | tee /etc/apt/sources.list.d/mssql-release.list
+RUN curl https://packages.microsoft.com/keys/microsoft.asc | apt-key add - && \
+ curl https://packages.microsoft.com/config/debian/10/prod.list > /etc/apt/sources.list.d/mssql-release.list
25
RUN apt-get update
26
RUN ACCEPT_EULA=Y apt-get install -y msodbcsql18
27
RUN apt-get install -y unixodbc-dev
0 commit comments