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>
8 lines
236 B
PHP
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'
|
|
]);
|