Skip to content

Commit

Permalink
build(Dockerfile): upgrade PHP version to 8.3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
Alcides Ramos committed Oct 1, 2024
1 parent bd163dd commit f63d46e
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# STAGE: BASE-IMAGE
#----------------------------------------------------------

FROM php:8.3.11-fpm-alpine AS base-image
FROM php:8.3.12-fpm-alpine AS base-image

#----------------------------------------------------------
# STAGE: COMMON
Expand Down Expand Up @@ -133,7 +133,7 @@ ENV ENV=PRODUCTION
# Setup the FPM servie name and port
RUN sed -i -r "s/LISTEN/${LISTEN}/g" /healthcheck.sh

# Add __ONLY__ compiled extensions & their config files
# Add __ONLY__ compiled extensions & their config files
COPY --from=extensions-builder-common /usr/local/lib/php/extensions/*/* /usr/local/lib/php/extensions/no-debug-non-zts-20230831/
COPY --from=extensions-builder-common /usr/local/etc/php/conf.d/* /usr/local/etc/php/conf.d/

Expand Down
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

## Summary

This repository contains a _dockerized_ environment for building PHP applications based on **php:8.3.11-fpm-alpine** with Caddy support.
This repository contains a _dockerized_ environment for building PHP applications based on **php:8.3.12-fpm-alpine** with Caddy support.

### Highlights

Expand Down Expand Up @@ -363,25 +363,25 @@ $ docker run -it --rm app:development bash

To allow PHPStorm index huge projects consider to increase the default assigned memory amount from 2048 MiB up to 8192 MiB.

![phpstorm-memory-settings](phpstorm-memory-settings.png)
![phpstorm-memory-settings](README/setup-phpstorm-memory/phpstorm-memory-settings.png)

##### Settings > PHP > Debug

Ensure the `Max. simultaneous connections` is set to 1 to avoid trace collisions when debugging.

![phpstorm-debug](phpstorm-settings-php-debug.png)
![phpstorm-debug](README/setup-phpstorm-xdebug/phpstorm-settings-php-debug.png)

##### Settings > PHP > Servers

Ensure the `~/path/to/my-new-project/src` folder is mapped to `/var/www/html`

![phpstorm-settings-php-servers](phpstorm-settings-php-servers.png)
![phpstorm-settings-php-servers](README/setup-phpstorm-xdebug/phpstorm-settings-php-servers.png)

##### Settings > PHP

![phpstorm-settings-php-settings](phpstorm-settings-php-settings.png)
![phpstorm-settings-php-settings](README/setup-phpstorm-xdebug/phpstorm-settings-php-settings.png)

![phpstorm-settings-php-settings-cli-interpreter](phpstorm-settings-php-settings-cli-interpreter.png)
![phpstorm-settings-php-settings-cli-interpreter](README/setup-phpstorm-xdebug/phpstorm-settings-php-settings-cli-interpreter.png)



Expand All @@ -396,7 +396,7 @@ Ensure the `~/path/to/my-new-project/src` folder is mapped to `/var/www/html`


![phpstorm-settings-php-settings-cli-interpreter-configuration-files](phpstorm-settings-php-settings-cli-interpreter-configuration-files.png)
![phpstorm-settings-php-settings-cli-interpreter-configuration-files](README/setup-phpstorm-xdebug/phpstorm-settings-php-settings-cli-interpreter-configuration-files.png)



Expand Down
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes

0 comments on commit f63d46e

Please sign in to comment.