images/server-php/product/public/index.php
Snider bd10a3f377 fix(server-php): add minimal product placeholder for base image
The Dockerfile requires product/ directory for the builder stage.
For the base image, this is a minimal placeholder that returns JSON.
Applications should mount their own code at /var/www/html.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-31 23:54:26 +00:00

8 lines
236 B
PHP

<?php
// Placeholder for base image
// Applications should mount/copy their own code
echo json_encode([
'status' => 'ok',
'message' => 'Host UK Server PHP Base Image',
'note' => 'Mount your Laravel app to /var/www/html'
]);