Files
kulakpos_web/Dockerfile
eko f10e4ca879
Some checks failed
Build, Push and Deploy / build-and-deploy (push) Failing after 1m52s
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 8s
fix dockerfile
2026-03-16 09:29:36 +07:00

69 lines
2.4 KiB
Docker

FROM php:8.2-fpm-alpine
# Install system dependencies
RUN apk add --no-cache \
libzip-dev \
postgresql-dev \
libpng-dev \
libjpeg-turbo-dev \
freetype-dev \
oniguruma-dev \
git \
curl \
&& 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
COPY --chown=www-data:www-data . .
# Create the missing Helper file
RUN mkdir -p app/Helpers && \
echo "<?php\n\nnamespace App\Helpers;\n\nclass Helper\n{\n // Helper functions\n}\n" > app/Helpers/Helper.php
# Install dependencies
RUN composer install --no-dev --no-interaction --no-progress --optimize-autoloader
# Create startup script with directory creation
RUN echo '#!/bin/sh' > /start.sh && \
echo '' >> /start.sh && \
echo '# Create storage directories with proper permissions at runtime' >> /start.sh && \
echo 'mkdir -p storage/framework/{cache,sessions,views}' >> /start.sh && \
echo 'mkdir -p storage/logs' >> /start.sh && \
echo 'mkdir -p bootstrap/cache' >> /start.sh && \
echo 'chmod -R 775 storage bootstrap/cache' >> /start.sh && \
echo 'chmod -R 777 storage/framework/sessions storage/logs' >> /start.sh && \
echo 'chown -R www-data:www-data storage bootstrap/cache' >> /start.sh && \
echo '' >> /start.sh && \
echo '# Generate key if not set' >> /start.sh && \
echo 'php artisan key:generate --no-interaction --force || true' >> /start.sh && \
echo '' >> /start.sh && \
echo '# Clear cache' >> /start.sh && \
echo 'php artisan config:clear || true' >> /start.sh && \
echo 'php artisan cache:clear || true' >> /start.sh && \
echo '' >> /start.sh && \
echo '# Start the application based on mode' >> /start.sh && \
echo 'if [ "$MODE" = "dev" ]; then' >> /start.sh && \
echo ' echo "Starting in DEV mode with PHP built-in server on port 8000..."' >> /start.sh && \
echo ' php artisan serve --host=0.0.0.0 --port=8000' >> /start.sh && \
echo 'else' >> /start.sh && \
echo ' echo "Starting in PROD mode with PHP-FPM on port 9000..."' >> /start.sh && \
echo ' php-fpm' >> /start.sh && \
echo 'fi' >> /start.sh && \
chmod +x /start.sh
EXPOSE 8000 9000
CMD ["/start.sh"]