Skip to content

Commit

Permalink
Support sqlsrv on PHP 8.3 (#518)
Browse files Browse the repository at this point in the history
  • Loading branch information
ddeboer authored Jan 18, 2024
1 parent faf7b12 commit 18262f5
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions layers/sqlsrv/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,12 @@ RUN yum -y install unixODBC-devel-2.3.1-14.amzn2.x86_64
RUN curl https://packages.microsoft.com/config/rhel/7/prod.repo > /etc/yum.repos.d/mssql-release.repo
RUN ACCEPT_EULA=Y yum -y install msodbcsql17-17.10.1.1-1.x86_64

RUN pecl install sqlsrv-5.11.1 && \
pecl install pdo_sqlsrv-5.11.1
RUN if [ "$PHP_VERSION" = "83" ]; \
then SQLSRV_VERSION=5.12.0beta1 ; \
else SQLSRV_VERSION=5.11.1 ; \
fi ; \
pecl install sqlsrv-${SQLSRV_VERSION} && \
pecl install pdo_sqlsrv-${SQLSRV_VERSION}

RUN cp `php-config --extension-dir`/sqlsrv.so /tmp/sqlsrv.so
RUN cp `php-config --extension-dir`/pdo_sqlsrv.so /tmp/pdo_sqlsrv.so
Expand Down

0 comments on commit 18262f5

Please sign in to comment.