- Add Docker configuration (Dockerfile, docker-compose.yml) - Add Nginx and Supervisor configuration - Add deployment documentation (DEPLOYMENT.md) - Complete Phase 3 data migration (63 entries, 63 docs, 28 subs) - Add responsive PDF viewer component - Fix date format to American (MM/DD/YYYY) - Update typography to match v1.0 - Add admin dashboard with full CRUD operations - Configure PostgreSQL with secure password - Connect to caddy_network for reverse proxy - Ready for production deployment
63 lines
1.4 KiB
Docker
63 lines
1.4 KiB
Docker
# Multi-stage build for Laravel + Vue/Inertia application
|
|
FROM php:8.3-fpm-alpine AS base
|
|
|
|
# Install system dependencies
|
|
RUN apk add --no-cache \
|
|
git \
|
|
curl \
|
|
libpng-dev \
|
|
libzip-dev \
|
|
zip \
|
|
unzip \
|
|
postgresql-dev \
|
|
nodejs \
|
|
npm \
|
|
nginx \
|
|
supervisor
|
|
|
|
# Install PHP extensions
|
|
RUN docker-php-ext-install pdo pdo_pgsql pgsql zip gd
|
|
|
|
# Install Composer
|
|
COPY --from=composer:latest /usr/bin/composer /usr/bin/composer
|
|
|
|
# Set working directory
|
|
WORKDIR /var/www/html
|
|
|
|
# Copy composer files
|
|
COPY composer.json composer.lock ./
|
|
|
|
# Install PHP dependencies
|
|
RUN composer install --no-dev --optimize-autoloader --no-scripts --no-interaction
|
|
|
|
# Copy package files
|
|
COPY package.json package-lock.json* ./
|
|
|
|
# Install Node dependencies
|
|
RUN npm ci --legacy-peer-deps
|
|
|
|
# Copy application files
|
|
COPY . .
|
|
|
|
# Build frontend assets
|
|
RUN npm run build
|
|
|
|
# Generate optimized autoload files
|
|
RUN composer dump-autoload --optimize
|
|
|
|
# Set permissions
|
|
RUN chown -R www-data:www-data /var/www/html/storage /var/www/html/bootstrap/cache
|
|
RUN chmod -R 775 /var/www/html/storage /var/www/html/bootstrap/cache
|
|
|
|
# Copy nginx configuration
|
|
COPY docker/nginx.conf /etc/nginx/nginx.conf
|
|
COPY docker/default.conf /etc/nginx/http.d/default.conf
|
|
|
|
# Copy supervisor configuration
|
|
COPY docker/supervisord.conf /etc/supervisor/conf.d/supervisord.conf
|
|
|
|
# Expose port 80
|
|
EXPOSE 80
|
|
|
|
# Start supervisor
|
|
CMD ["/usr/bin/supervisord", "-c", "/etc/supervisor/conf.d/supervisord.conf"]
|