From a4c1ddeb9ea1c08e4c186d5ce2f48d605d61d0a5 Mon Sep 17 00:00:00 2001 From: "Eloy Lafuente (stronk7)" Date: Wed, 25 Oct 2023 17:10:07 +0200 Subject: [PATCH] Bump to 8.3.0RC4 Not working yet: - solr extension (https://github.com/php/pecl-search_engine-solr) --- Dockerfile | 2 +- README.md | 2 +- root/tmp/setup/sqlsrv-extension.sh | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index cd3d71a..9a9e96a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM php:8.3.0RC3-apache-bookworm +FROM php:8.3.0RC4-apache-bookworm # So we can use it anywhere for conditional stuff. Keeping BC with old (non-buildkit, builders) ARG TARGETPLATFORM diff --git a/README.md b/README.md index c9c0d4b..41a942a 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ A Moodle PHP environment configured for Moodle development based on [Official PH | PHP Version | Variant | Tags | Status | Notes | |--------------|---------|------------------|--------|-------| -| PHP 8.3 | Bookworm| dev| [![Test and publish 8.3](https://github.com/moodlehq/moodle-php-apache/actions/workflows/test_buildx_and_publish.yml/badge.svg?branch=master)](https://github.com/moodlehq/moodle-php-apache/actions/workflows/test_buildx_and_publish.yml)|8.3.0rc3, testing| +| PHP 8.3 | Bookworm| dev| [![Test and publish 8.3](https://github.com/moodlehq/moodle-php-apache/actions/workflows/test_buildx_and_publish.yml/badge.svg?branch=master)](https://github.com/moodlehq/moodle-php-apache/actions/workflows/test_buildx_and_publish.yml)|8.3.0rc4, testing| | PHP 8.2 | Bookworm | 8.2, 8.2-bookworm| [![Test and publish 8.2](https://github.com/moodlehq/moodle-php-apache/actions/workflows/test_buildx_and_publish.yml/badge.svg?branch=8.2-bookworm)](https://github.com/moodlehq/moodle-php-apache/actions/workflows/test_buildx_and_publish.yml)| | PHP 8.1 | Bookworm | 8.1, 8.1-bookworm | [![Test and publish 8.1](https://github.com/moodlehq/moodle-php-apache/actions/workflows/test_buildx_and_publish.yml/badge.svg?branch=8.1-bookworm)](https://github.com/moodlehq/moodle-php-apache/actions/workflows/test_buildx_and_publish.yml)| | PHP 8.2 | Bullseye| 8.2-bullseye| [![Test and publish 8.2](https://github.com/moodlehq/moodle-php-apache/actions/workflows/test_buildx_and_publish.yml/badge.svg?branch=8.2-bullseye)](https://github.com/moodlehq/moodle-php-apache/actions/workflows/test_buildx_and_publish.yml)| diff --git a/root/tmp/setup/sqlsrv-extension.sh b/root/tmp/setup/sqlsrv-extension.sh index d173e8f..b5aa365 100755 --- a/root/tmp/setup/sqlsrv-extension.sh +++ b/root/tmp/setup/sqlsrv-extension.sh @@ -26,7 +26,7 @@ echo "Downloading sqlsrv files" curl https://packages.microsoft.com/keys/microsoft.asc | apt-key add - # TODO, bookworm should be 12, but the msodbcsql17 package is not available yet, hence using bullseye (11) one. # (see https://learn.microsoft.com/en-us/answers/questions/1328834/debian-12-public-key-is-not-available) -curl https://packages.microsoft.com/config/debian/11/prod.list -o /etc/apt/sources.list.d/mssql-release.list +curl https://packages.microsoft.com/config/debian/12/prod.list -o /etc/apt/sources.list.d/mssql-release.list apt-get update echo "Install msodbcsql" @@ -35,7 +35,7 @@ ACCEPT_EULA=Y apt-get install -y msodbcsql17 ln -fsv /opt/mssql-tools/bin/* /usr/bin # Need 5.11 (or later) for PHP 8.2 support -pecl install sqlsrv-5.11.0 +pecl install sqlsrv-5.11.1 docker-php-ext-enable sqlsrv # Keep our image size down..