-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8374a9c
commit 8370d73
Showing
1 changed file
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
FROM php:8.3-apache-bullseye | ||
FROM php:8.3-apache-bookworm | ||
|
||
ENV ACCEPT_EULA="Y" | ||
|
||
RUN apt-get update && \ | ||
apt-get install -y gnupg && \ | ||
curl https://packages.microsoft.com/keys/microsoft.asc | apt-key add - && \ | ||
curl https://packages.microsoft.com/keys/microsoft.asc > /etc/apt/trusted.gpg.d/microsoft.asc && \ | ||
curl https://packages.microsoft.com/config/debian/11/prod.list > /etc/apt/sources.list.d/mssql-release.list && \ | ||
apt-get update -y && \ | ||
apt-get install -y msodbcsql18 unixodbc-dev && \ | ||
pecl install sqlsrv-5.10.0 && \ | ||
pecl install sqlsrv-5.12.0 && \ | ||
docker-php-ext-enable sqlsrv | ||
|
||
RUN php -m |