Skip to content

Commit

Permalink
fixing brackets
Browse files Browse the repository at this point in the history
  • Loading branch information
ericbuckley committed Jan 23, 2025
1 parent 49a1e6f commit deb933c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ RUN pip install --upgrade pip
# Conditionally install ODBC driver for SQL Server.
# There is no ODBC driver for linux/arm64 architecture, so SQL Server support
# is limited to linux/amd64 architecture
RUN if [ "$USE_MSSQL" = "true" && "$(dpkg --print-architecture)" = "amd64" ]; then \
RUN if [ "$USE_MSSQL" = "true" ] && [ "$(dpkg --print-architecture)" = "amd64" ]; then \
apt-get install -y gnupg2 apt-transport-https && \
curl https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor -o /etc/apt/trusted.gpg.d/microsoft.gpg && \
curl https://packages.microsoft.com/config/debian/11/prod.list | tee /etc/apt/sources.list.d/mssql-release.list && \
Expand Down

0 comments on commit deb933c

Please sign in to comment.