All checks were successful
Build, Push and Deploy / build-and-push (push) Successful in 2m35s
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 9s
Build, Push and Deploy / deploy-staging (push) Successful in 21s
Build, Push and Deploy / deploy-production (push) Has been skipped
Build, Push and Deploy / cleanup (push) Successful in 1s
88 lines
2.3 KiB
Docker
88 lines
2.3 KiB
Docker
FROM php:8.2-fpm-alpine
|
|
|
|
# Install system dependencies
|
|
RUN apk add --no-cache \
|
|
vim \
|
|
xxd \
|
|
libzip-dev \
|
|
postgresql-dev \
|
|
libpng-dev \
|
|
libjpeg-turbo-dev \
|
|
freetype-dev \
|
|
oniguruma-dev \
|
|
git \
|
|
curl \
|
|
nodejs \
|
|
npm \
|
|
&& docker-php-ext-configure gd --with-freetype --with-jpeg \
|
|
&& docker-php-ext-install -j$(nproc) \
|
|
pdo_pgsql \
|
|
pgsql \
|
|
opcache \
|
|
zip \
|
|
bcmath \
|
|
gd \
|
|
exif \
|
|
pcntl
|
|
|
|
# Install Composer
|
|
COPY --from=composer:latest /usr/bin/composer /usr/bin/composer
|
|
|
|
WORKDIR /var/www/html
|
|
|
|
# Copy ALL application files first
|
|
COPY --chown=www-data:www-data . .
|
|
|
|
# Remove any nested vendor directories
|
|
RUN find . -type d -name "vendor" -not -path "./vendor*" -exec rm -rf {} + 2>/dev/null || true
|
|
|
|
# Create all necessary directories with proper structure
|
|
RUN mkdir -p storage/framework/cache \
|
|
&& mkdir -p storage/framework/sessions \
|
|
&& mkdir -p storage/framework/views \
|
|
&& mkdir -p storage/framework/testing \
|
|
&& mkdir -p storage/logs \
|
|
&& mkdir -p bootstrap/cache \
|
|
&& mkdir -p storage/framework/cache/data \
|
|
&& chmod -R 777 storage \
|
|
&& chmod -R 777 bootstrap/cache
|
|
|
|
# Create a temporary config to avoid cache path errors
|
|
RUN if [ ! -f config/app.php ]; then \
|
|
echo "<?php return ['providers' => []];" > config/app.php; \
|
|
fi
|
|
|
|
# Install PHP dependencies with --no-scripts to avoid cache path issues
|
|
RUN composer install --no-interaction --no-progress --optimize-autoloader --no-scripts
|
|
|
|
# Fix missing laravel/prompts
|
|
RUN if [ ! -f vendor/laravel/prompts/src/helpers.php ]; then \
|
|
composer require laravel/prompts --no-interaction --with-all-dependencies; \
|
|
fi
|
|
|
|
# Now run the scripts manually with proper environment
|
|
RUN composer run-script post-autoload-dump || true
|
|
|
|
# Copy package files for NPM
|
|
COPY package*.json ./
|
|
COPY vite.config.js ./
|
|
|
|
# Install NPM dependencies
|
|
RUN npm install --legacy-peer-deps --no-audit
|
|
|
|
# Build Vite assets
|
|
RUN npm run build || true
|
|
|
|
# Generate application key
|
|
RUN php artisan key:generate --no-interaction --force || true
|
|
|
|
# Clear and cache config (but handle missing paths gracefully)
|
|
RUN php artisan config:clear || true \
|
|
&& php artisan cache:clear || true
|
|
|
|
COPY entrypoint.sh /entrypoint.sh
|
|
RUN chmod +x /entrypoint.sh
|
|
|
|
EXPOSE 8000 9000
|
|
|
|
ENTRYPOINT ["/entrypoint.sh"] |