FROM php:8.4-fpm # Install SQLite extension and Node.js RUN apt-get update && apt-get install -y \ sqlite3 \ libsqlite3-dev \ curl \ && docker-php-ext-install pdo_sqlite \ && curl -fsSL https://deb.nodesource.com/setup_lts.x | bash - \ && apt-get install -y nodejs \ && rm -rf /var/lib/apt/lists/* # Set working directory WORKDIR /app COPY ./src .