Skip to content

Commit

Permalink
feat: update to php:8.2.9-bullseye
Browse files Browse the repository at this point in the history
  • Loading branch information
ronisaha committed Aug 27, 2023
1 parent f8f5cd5 commit 4a3537d
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docker-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
do
folder=${dockerFilePath%"/Dockerfile"}
VERSION=${folder##*/}
PHP_VERSION=8.2.8
PHP_VERSION=8.2.9
tmpName="image-$RANDOM"
cp -r fonts $folder/
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# php-8-debain
Docker image with php:8.2.8-bullseye
Docker image with php:8.2.x-bullseye

All image contain following php extension, [wkhtmltopdf-0.12.6](https://github.com/wkhtmltopdf/wkhtmltopdf/) with patched QT, [merge2pdf](https://github.com/ajaxray/merge2pdf) and [composer](https://github.com/composer/composer).

Expand Down Expand Up @@ -28,7 +28,7 @@ All image contain following php extension, [wkhtmltopdf-0.12.6](https://github.c

## Image Variants
### php-8-debain:cli or php-8-debain:cli-{php-version}
This use the cli base image also contain nodejs-18.x and npm
This use the cli base image with xdebug enabled, also contain nodejs-18.x and npm

### php-8-debain:fpm or php-8-debain:fpm-{php-version}
This use the fpm base image
Expand Down
2 changes: 1 addition & 1 deletion apache/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG PHP_VERSION=8.2.8
ARG PHP_VERSION=8.2.9
FROM php:${PHP_VERSION}-apache-bullseye

LABEL org.opencontainers.image.authors="Roni Kumar Saha <[email protected]>"
Expand Down
5 changes: 3 additions & 2 deletions cli/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG PHP_VERSION=8.2.8
ARG PHP_VERSION=8.2.9
FROM php:${PHP_VERSION}-cli-bullseye

LABEL org.opencontainers.image.authors="Roni Kumar Saha <[email protected]>"
Expand Down Expand Up @@ -75,7 +75,8 @@ RUN set -eux; \
echo /usr/lib/instantclient > /etc/ld.so.conf.d/oracle-instantclient.conf ;\
ldconfig ;\
echo 'instantclient,/usr/lib/instantclient' | pecl install oci8; \
docker-php-ext-enable oci8; \
pecl install xdebug; \
docker-php-ext-enable oci8 xdebug; \
curl -L https://github.com/mlocati/docker-php-extension-installer/releases/latest/download/install-php-extensions > /usr/local/bin/install-php-extensions \
; \
chmod +x /usr/local/bin/install-php-extensions ; \
Expand Down
2 changes: 1 addition & 1 deletion dev/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG PHP_VERSION=8.2.8
ARG PHP_VERSION=8.2.9
FROM php:${PHP_VERSION}-apache-bullseye

LABEL org.opencontainers.image.authors="Roni Kumar Saha <[email protected]>"
Expand Down
2 changes: 1 addition & 1 deletion fpm/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG PHP_VERSION=8.2.8
ARG PHP_VERSION=8.2.9
FROM php:${PHP_VERSION}-fpm-bullseye

LABEL org.opencontainers.image.authors="Roni Kumar Saha <[email protected]>"
Expand Down
2 changes: 1 addition & 1 deletion supervisor/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG PHP_VERSION=8.2.8
ARG PHP_VERSION=8.2.9
FROM php:${PHP_VERSION}-cli-bullseye

LABEL org.opencontainers.image.authors="Roni Kumar Saha <[email protected]>"
Expand Down

0 comments on commit 4a3537d

Please sign in to comment.