Commit adf64bd2 authored by Mahmoud Aglan's avatar Mahmoud Aglan

fix: upgrade PHP 8.3 → 8.4 in Dockerfile for Laravel 13 compatibility

Laravel 13's Symfony dependencies require PHP >= 8.4.1. The container was
crash-looping because the entrypoint hit Composer's platform check against
the 8.3 runtime.
Co-Authored-By: 's avatarClaude Opus 4.6 <noreply@anthropic.com>
parent 205e7209
...@@ -39,7 +39,7 @@ COPY . . ...@@ -39,7 +39,7 @@ COPY . .
RUN composer dump-autoload --optimize --no-dev RUN composer dump-autoload --optimize --no-dev
# Stage 3: Production image # Stage 3: Production image
FROM php:8.3-fpm-alpine FROM php:8.4-fpm-alpine
# System dependencies # System dependencies
RUN apk add --no-cache \ RUN apk add --no-cache \
......
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
"keywords": ["laravel", "framework"], "keywords": ["laravel", "framework"],
"license": "MIT", "license": "MIT",
"require": { "require": {
"php": "^8.3", "php": "^8.4",
"laravel/framework": "^13.8", "laravel/framework": "^13.8",
"laravel/tinker": "^3.0", "laravel/tinker": "^3.0",
"livewire/livewire": "^4.3" "livewire/livewire": "^4.3"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment