fix(docker): add sqlite-dev dependency for pdo_sqlite extension

هذا الالتزام موجود في:
2025-10-15 15:38:59 +03:00
الأصل 2a00f2bda4
التزام e17d41c0ea

عرض الملف

@@ -13,6 +13,8 @@ RUN apk add --no-cache \
git \
oniguruma-dev \
sqlite \
sqlite-dev \
mysql-client \
nodejs \
npm
@@ -47,8 +49,4 @@ USER www-data
EXPOSE 8000
# Start the application
CMD php artisan config:cache && \
php artisan route:cache && \
php artisan view:cache && \
php artisan migrate --force && \
php artisan serve --host=0.0.0.0 --port=8000
CMD ["/bin/sh", "-c", "php artisan config:cache && php artisan route:cache && php artisan view:cache && php artisan migrate --force && php artisan serve --host=0.0.0.0 --port=8000"]