- Replace Docker Compose setup with Kubernetes manifests for deployment - Simplify Dockerfile to use PHP's built-in server instead of nginx+supervisor - Add Makefile with build and deploy commands for local development - Update environment configuration for production deployment - Remove docker-specific configuration files (nginx.conf, supervisord.conf)
7 lines
109 B
Docker
7 lines
109 B
Docker
FROM php:8.4-fpm
|
|
|
|
COPY . /app
|
|
WORKDIR /app
|
|
|
|
CMD ["php", "artisan", "serve", "--host=0.0.0.0", "--port=8000"]
|