Skip to content

Commit

Permalink
[dy] Update dockerfile (mage-ai#2148)
Browse files Browse the repository at this point in the history
  • Loading branch information
dy46 authored Mar 8, 2023
1 parent 16b91d5 commit de55fdd
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ USER root
# Download ODBC headers for pyodbc
RUN curl https://packages.microsoft.com/keys/microsoft.asc | apt-key add -
RUN curl https://packages.microsoft.com/config/debian/11/prod.list > /etc/apt/sources.list.d/mssql-release.list
RUN apt-get update
RUN ACCEPT_EULA=Y apt-get install -y msodbcsql18
RUN apt install unixodbc-dev
RUN apt -y update
RUN ACCEPT_EULA=Y apt -y install msodbcsql18
RUN apt -y install unixodbc-dev

# Install NFS dependencies, and pymssql dependencies
RUN apt -y install nfs-common freetds-dev freetds-bin
Expand Down
6 changes: 3 additions & 3 deletions dev.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ USER root
# Download ODBC headers for pyodbc
RUN curl https://packages.microsoft.com/keys/microsoft.asc | apt-key add -
RUN curl https://packages.microsoft.com/config/debian/11/prod.list > /etc/apt/sources.list.d/mssql-release.list
RUN apt-get update
RUN ACCEPT_EULA=Y apt-get install -y msodbcsql18
RUN apt install unixodbc-dev
RUN apt -y update
RUN ACCEPT_EULA=Y apt -y install msodbcsql18
RUN apt -y install unixodbc-dev

# Install NFS dependencies, and pymssql dependencies
RUN apt -y install curl freetds-dev freetds-bin
Expand Down

0 comments on commit de55fdd

Please sign in to comment.