- Create symlink from /app/code/storage to /app/data/storage in Dockerfile
- Symlink is created during build when filesystem is writable
- Removed Laravel paths override approach
- Deleted unused laravel-paths.php file
- Created laravel-paths.php to override storage path
- Patched bootstrap/app.php to load custom paths
- Removed symlink approach as /app/code is read-only
- Laravel will now use /app/data/storage directly
- Removed mkdir command that was creating /app/code/storage
- This allows ln -sf to create the symlink correctly
- Previously ln was creating /app/code/storage/storage instead