- Update Dockerfile to use fully qualified composer image name - Replace kubectl commands with podman kube play/down in Makefile - Change from Kubernetes Secret to ConfigMap for environment variables - Set imagePullPolicy to Never and use localhost/ prefix for local images - Reduce replica count to 1 for local development - Add stop target to Makefile for easier cleanup
40 lines
976 B
Docker
40 lines
976 B
Docker
FROM php:8.4-fpm
|
|
|
|
# Set working directory early to avoid conflicts with host files
|
|
WORKDIR /var/www
|
|
|
|
# Install system dependencies
|
|
RUN apt-get update && apt-get install -y \
|
|
git \
|
|
curl \
|
|
libpng-dev \
|
|
libonig-dev \
|
|
libxml2-dev \
|
|
zip \
|
|
unzip \
|
|
libzip-dev \
|
|
libicu-dev
|
|
|
|
# Install PHP extensions installer
|
|
ADD https://github.com/mlocati/docker-php-extension-installer/releases/latest/download/install-php-extensions /usr/local/bin/
|
|
|
|
RUN chmod +x /usr/local/bin/install-php-extensions && \
|
|
install-php-extensions pdo_mysql mbstring exif pcntl bcmath gd zip intl
|
|
|
|
# Clear cache
|
|
RUN apt-get clean && rm -rf /var/lib/apt/lists/*
|
|
|
|
# Get latest Composer
|
|
COPY --from=docker.io/library/composer:latest /usr/bin/composer /usr/bin/composer
|
|
|
|
# Copy application files
|
|
COPY --chown=www-data:www-data . /var/www
|
|
|
|
# Change current user to www
|
|
USER www-data
|
|
|
|
# Expose port 8000
|
|
EXPOSE 8000
|
|
|
|
CMD ["php", "artisan", "serve", "--host=0.0.0.0", "--port=8000"]
|