Skip to content

Commit 0b72f3f

Browse files
Merge pull request #989 from sanger/python-version-upgrade-patch-1
Update Dockerfile
2 parents 7890971 + c467a6b commit 0b72f3f

File tree

1 file changed

+3
-7
lines changed

1 file changed

+3
-7
lines changed

Dockerfile

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,11 @@ RUN apt-get update && \
2020
unixodbc-dev
2121

2222
# Install the Microsoft ODBC driver for SQL Server
23-
# https://docs.microsoft.com/en-us/sql/connect/odbc/linux-mac/installing-the-microsoft-odbc-driver-for-sql-server?view=sql-server-ver15#debian17
24-
# Debian 10
2523
RUN curl https://packages.microsoft.com/keys/microsoft.asc | apt-key add - && \
2624
curl https://packages.microsoft.com/config/debian/10/prod.list > /etc/apt/sources.list.d/mssql-release.list
27-
28-
RUN apt-get update && \
29-
ACCEPT_EULA=Y apt-get install -y \
30-
msodbcsql17 \
31-
&& rm -rf /var/lib/apt/lists/*
25+
RUN apt-get update
26+
RUN ACCEPT_EULA=Y apt-get install -y msodbcsql18
27+
RUN apt-get install -y unixodbc-dev
3228

3329
# Install the package manager - pipenv
3430
RUN pip install --upgrade pip && \

0 commit comments

Comments
 (0)