diff --git a/Makefile b/Makefile index d789d56..dd9abfc 100644 --- a/Makefile +++ b/Makefile @@ -1,9 +1,9 @@ .PHONY: build -VERSION=8.2.9 +VERSION=8.2.13 VERSION_MAJOR=8 VERSION_MINOR=2 -VERSION_PATCH=9 +VERSION_PATCH=13 FLAVOUR=cli TAG=php-buildtest diff --git a/base/Dockerfile b/base/Dockerfile index dc1a3a7..b8a9c78 100644 --- a/base/Dockerfile +++ b/base/Dockerfile @@ -1,6 +1,6 @@ ARG FLAVOUR ARG VERSION -FROM php:${VERSION}-${FLAVOUR}-bullseye +FROM php:${VERSION}-${FLAVOUR}-bookworm # php version ARG VERSION @@ -23,6 +23,7 @@ RUN apt-get update \ libjpeg62-turbo-dev \ libonig-dev \ libpng-dev \ + libpq-dev \ libwebp-dev \ libxslt1-dev \ libzip-dev \ @@ -53,6 +54,7 @@ RUN \ opcache \ pcntl \ pdo_mysql \ + pdo_pgsql \ soap \ xsl \ zip \ diff --git a/base/php/session.ini b/base/php/session.ini index fb1b220..3ddf7f6 100644 --- a/base/php/session.ini +++ b/base/php/session.ini @@ -1,4 +1,4 @@ [PHP] session.cookie_secure = 1 session.cookie_samesite = strict -session.cookie_httponly = 1 \ No newline at end of file +session.cookie_httponly = 1 diff --git a/bin/build-matrix.go b/bin/build-matrix.go index d12f7db..10079c3 100644 --- a/bin/build-matrix.go +++ b/bin/build-matrix.go @@ -8,10 +8,8 @@ import ( ) var version = map[string]string{ - "7.4.33": "3", - "8.0.30": "1", - "8.1.22": "1", - "8.2.9": "1", + "8.1.26": "", + "8.2.13": "", } func main() {