From 2c5acf741568756418f34f3d3a5f7dda164c9d6a Mon Sep 17 00:00:00 2001 From: Khantey Long Date: Wed, 17 Jun 2026 16:34:30 +0700 Subject: [PATCH] modified Dockerfile --- Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index b506a23..3f6c66c 100755 --- a/Dockerfile +++ b/Dockerfile @@ -14,7 +14,9 @@ RUN apt-get update && apt-get install -y \ # PHP Extensions RUN docker-php-ext-install pdo_mysql mbstring exif pcntl bcmath gd -RUN chown -R www-data:www-data /var/www/storage /var/www/bootstrap/cache +RUN curl -fsSL https://deb.nodesource.com/setup_20.x | bash - \ + && apt-get install -y nodejs +# RUN chown -R www-data:www-data /var/www/storage /var/www/bootstrap/cache # Install Composer COPY --from=composer:latest /usr/bin/composer /usr/bin/composer