- Updated Dockerfile configurations for various environments (alpine, basic, cloudrun, minimal, simple, test) to ensure compatibility with Laravel 5.0 and PHP 5.6. - Added PHP compatibility documentation outlining mcrypt requirements and upgrade paths. - Created cloudbuild.yaml for Google Cloud Build integration to streamline deployment to Cloud Run. - Introduced docker-compose.local.yml for local development with MySQL and Redis services. - Enhanced rebuild.sh script for easier local development and migration handling. - Updated Laravel Blade views to correct asset paths. - Added start-local.sh script for quick local setup and service management.
40 lines
1.2 KiB
Docker
40 lines
1.2 KiB
Docker
# Use the official PHP image based on Alpine Linux
|
|
FROM php:5.6-fpm-alpine
|
|
|
|
# Install system dependencies and PHP extensions
|
|
RUN apk --update --no-cache add \
|
|
nginx \
|
|
libpng-dev \
|
|
libjpeg-turbo-dev \
|
|
freetype-dev \
|
|
libzip-dev \
|
|
zip \
|
|
unzip \
|
|
libmcrypt-dev \
|
|
&& docker-php-ext-configure gd --with-freetype-dir=/usr/include/ --with-jpeg-dir=/usr/include/ \
|
|
&& docker-php-ext-install gd pdo pdo_mysql zip mcrypt
|
|
|
|
# Set the working directory in the container
|
|
WORKDIR /var/www
|
|
|
|
# Copy the Laravel application files to the container
|
|
COPY . .
|
|
|
|
# Set appropriate permissions for Laravel storage and bootstrap cache
|
|
RUN chown -R www-data:www-data storage bootstrap/cache
|
|
|
|
# Install Composer
|
|
RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer
|
|
|
|
# Install Laravel dependencies
|
|
RUN composer install --no-interaction --no-plugins --no-scripts
|
|
|
|
# Create directory for the socket and set permissions
|
|
RUN mkdir -p /run/php && chown www-data:www-data /run/php
|
|
|
|
# Copy the www.conf file to PHP-FPM pool.d directory
|
|
# COPY www.conf /usr/local/etc/php-fpm.d/www.conf
|
|
|
|
# Expose port 9000 and start php-fpm server
|
|
EXPOSE 9000
|
|
CMD ["php-fpm"] |