diff --git a/Dockerfile b/Dockerfile index 5f888f1..3b8dad1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -31,7 +31,7 @@ COPY . . RUN composer install --no-dev --optimize-autoloader --no-interaction # Install Node dependencies and build assets -RUN npm ci && npm run build && rm -rf node_modules +RUN npm install && npm run build && rm -rf node_modules # Set permissions RUN chown -R www-data:www-data /var/www/html/storage /var/www/html/bootstrap/cache && \